| Name | Type | Description | Notes |
|---|
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)