Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 952 Bytes

File metadata and controls

30 lines (21 loc) · 952 Bytes

EntityMetric

Properties

Name Type Description Notes
name str Name of the Entity Metric
scope EntityMetricScope [optional]

Example

from instana_client.models.entity_metric import EntityMetric

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

# convert the object into a dict
entity_metric_dict = entity_metric_instance.to_dict()
# create an instance of EntityMetric from a dict
entity_metric_from_dict = EntityMetric.from_dict(entity_metric_dict)

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