| Name |
Type |
Description |
Notes |
| x |
str |
|
|
| y |
float |
|
|
from quantcdn.models.v1_series_point_day import V1SeriesPointDay
# TODO update the JSON string below
json = "{}"
# create an instance of V1SeriesPointDay from a JSON string
v1_series_point_day_instance = V1SeriesPointDay.from_json(json)
# print the JSON string representation of the object
print(V1SeriesPointDay.to_json())
# convert the object into a dict
v1_series_point_day_dict = v1_series_point_day_instance.to_dict()
# create an instance of V1SeriesPointDay from a dict
v1_series_point_day_from_dict = V1SeriesPointDay.from_dict(v1_series_point_day_dict)
[Back to Model list] [Back to API list] [Back to README]