Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.1 KB

File metadata and controls

29 lines (20 loc) · 1.1 KB

SyntheticTestShallowUpdate

Properties

Name Type Description Notes
configuration SyntheticConfigurationUpdate [optional]

Example

from instana_client.models.synthetic_test_shallow_update import SyntheticTestShallowUpdate

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

# convert the object into a dict
synthetic_test_shallow_update_dict = synthetic_test_shallow_update_instance.to_dict()
# create an instance of SyntheticTestShallowUpdate from a dict
synthetic_test_shallow_update_from_dict = SyntheticTestShallowUpdate.from_dict(synthetic_test_shallow_update_dict)

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