| Name |
Type |
Description |
Notes |
| columns |
List[str] |
|
[optional] |
| data |
List[List[object]] |
|
[optional] |
| unit |
str |
|
[optional] |
from hyperstack.models.metric_item_fields import MetricItemFields
# TODO update the JSON string below
json = "{}"
# create an instance of MetricItemFields from a JSON string
metric_item_fields_instance = MetricItemFields.from_json(json)
# print the JSON string representation of the object
print(MetricItemFields.to_json())
# convert the object into a dict
metric_item_fields_dict = metric_item_fields_instance.to_dict()
# create an instance of MetricItemFields from a dict
metric_item_fields_from_dict = MetricItemFields.from_dict(metric_item_fields_dict)
[Back to Model list] [Back to API list] [Back to README]