Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 847 Bytes

File metadata and controls

28 lines (19 loc) · 847 Bytes

Multiplication

Properties

Name Type Description Notes

Example

from instana_client.models.multiplication import Multiplication

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

# convert the object into a dict
multiplication_dict = multiplication_instance.to_dict()
# create an instance of Multiplication from a dict
multiplication_from_dict = Multiplication.from_dict(multiplication_dict)

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