Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 819 Bytes

Metrics.md

File metadata and controls

28 lines (20 loc) · 819 Bytes

Metrics

Properties

Name Type Description Notes
details MetricsDetails [optional]

Example

from OmniCore.models.metrics import Metrics

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

# convert the object into a dict
metrics_dict = metrics_instance.to_dict()
# create an instance of Metrics from a dict
metrics_form_dict = metrics.from_dict(metrics_dict)

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