Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

ArithmeticOperation

Properties

Name Type Description Notes
left ArithmeticOperand
operator str
right ArithmeticOperand

Example

from instana_client.models.arithmetic_operation import ArithmeticOperation

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

# convert the object into a dict
arithmetic_operation_dict = arithmetic_operation_instance.to_dict()
# create an instance of ArithmeticOperation from a dict
arithmetic_operation_from_dict = ArithmeticOperation.from_dict(arithmetic_operation_dict)

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