Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1021 Bytes

File metadata and controls

31 lines (22 loc) · 1021 Bytes

TimeseriesPoint

One bucket of a time series.

Properties

Name Type Description Notes
bucket_start datetime Start of the bucket, in the resolved timezone.
count int Row count in this bucket.

Example

from ksapi.models.timeseries_point import TimeseriesPoint

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

# convert the object into a dict
timeseries_point_dict = timeseries_point_instance.to_dict()
# create an instance of TimeseriesPoint from a dict
timeseries_point_from_dict = TimeseriesPoint.from_dict(timeseries_point_dict)

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