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