Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

GraphDatetimeValueModel

Properties

Name Type Description Notes
datetime str [optional]
value float [optional]

Example

from hyperstack.models.graph_datetime_value_model import GraphDatetimeValueModel

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

# convert the object into a dict
graph_datetime_value_model_dict = graph_datetime_value_model_instance.to_dict()
# create an instance of GraphDatetimeValueModel from a dict
graph_datetime_value_model_from_dict = GraphDatetimeValueModel.from_dict(graph_datetime_value_model_dict)

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