Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

DependentMetricGroupRep

Properties

Name Type Description Notes
key str A unique key to reference the metric group
name str A human-friendly name for the metric group
kind str The type of the metric group
links Dict[str, Link] The location and content type of related resources

Example

from launchdarkly_api.models.dependent_metric_group_rep import DependentMetricGroupRep

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

# convert the object into a dict
dependent_metric_group_rep_dict = dependent_metric_group_rep_instance.to_dict()
# create an instance of DependentMetricGroupRep from a dict
dependent_metric_group_rep_from_dict = DependentMetricGroupRep.from_dict(dependent_metric_group_rep_dict)

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