Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 977 Bytes

File metadata and controls

30 lines (21 loc) · 977 Bytes

ApplicationItem

Properties

Name Type Description Notes
application Application
metrics Dict[str, List[List[float]]]

Example

from instana_client.models.application_item import ApplicationItem

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

# convert the object into a dict
application_item_dict = application_item_instance.to_dict()
# create an instance of ApplicationItem from a dict
application_item_from_dict = ApplicationItem.from_dict(application_item_dict)

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