Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 769 Bytes

File metadata and controls

28 lines (19 loc) · 769 Bytes

Addition

Properties

Name Type Description Notes

Example

from instana_client.models.addition import Addition

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

# convert the object into a dict
addition_dict = addition_instance.to_dict()
# create an instance of Addition from a dict
addition_from_dict = Addition.from_dict(addition_dict)

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