Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 905 Bytes

File metadata and controls

28 lines (19 loc) · 905 Bytes

EmptyConfiguration

Properties

Name Type Description Notes

Example

from instana_client.models.empty_configuration import EmptyConfiguration

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

# convert the object into a dict
empty_configuration_dict = empty_configuration_instance.to_dict()
# create an instance of EmptyConfiguration from a dict
empty_configuration_from_dict = EmptyConfiguration.from_dict(empty_configuration_dict)

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