Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

CustomEntityWithMetadata

Properties

Name Type Description Notes
created int [optional]
data CustomEntityModel
id str
version str [optional]

Example

from instana_client.models.custom_entity_with_metadata import CustomEntityWithMetadata

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

# convert the object into a dict
custom_entity_with_metadata_dict = custom_entity_with_metadata_instance.to_dict()
# create an instance of CustomEntityWithMetadata from a dict
custom_entity_with_metadata_from_dict = CustomEntityWithMetadata.from_dict(custom_entity_with_metadata_dict)

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