Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 808 Bytes

File metadata and controls

28 lines (19 loc) · 808 Bytes

Subtraction

Properties

Name Type Description Notes

Example

from instana_client.models.subtraction import Subtraction

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

# convert the object into a dict
subtraction_dict = subtraction_instance.to_dict()
# create an instance of Subtraction from a dict
subtraction_from_dict = Subtraction.from_dict(subtraction_dict)

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