Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.24 KB

File metadata and controls

36 lines (27 loc) · 1.24 KB

ArithmeticOperand

Properties

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

Example

from instana_client.models.arithmetic_operand import ArithmeticOperand

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

# convert the object into a dict
arithmetic_operand_dict = arithmetic_operand_instance.to_dict()
# create an instance of ArithmeticOperand from a dict
arithmetic_operand_from_dict = ArithmeticOperand.from_dict(arithmetic_operand_dict)

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