Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.22 KB

File metadata and controls

36 lines (27 loc) · 1.22 KB

NestedOperation

Properties

Name Type Description Notes
value float [optional]
aggregation str [optional]
cross_series_aggregation str [optional]
granularity int [optional]
metric str [optional]
regex bool [optional]
required bool [optional]
operation ArithmeticOperation [optional]

Example

from instana_client.models.nested_operation import NestedOperation

# TODO update the JSON string below
json = "{}"
# create an instance of NestedOperation from a JSON string
nested_operation_instance = NestedOperation.from_json(json)
# print the JSON string representation of the object
print(NestedOperation.to_json())

# convert the object into a dict
nested_operation_dict = nested_operation_instance.to_dict()
# create an instance of NestedOperation from a dict
nested_operation_from_dict = NestedOperation.from_dict(nested_operation_dict)

[Back to Model list] [Back to API list] [Back to README]