Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.34 KB

File metadata and controls

31 lines (22 loc) · 1.34 KB

SeriesListRep

Properties

Name Type Description Notes
links Dict[str, object] The location and content type of related resources
metadata List[Dict[str, object]] Metadata about each series
series List[Dict[str, int]] An array of data points with timestamps. Each element of the array is an object with a 'time' field, whose value is the timestamp, and one or more key fields. If there are multiple key fields, they are labeled '0', '1', and so on, and are explained in the <code>metadata</code>.

Example

from launchdarkly_api.models.series_list_rep import SeriesListRep

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

# convert the object into a dict
series_list_rep_dict = series_list_rep_instance.to_dict()
# create an instance of SeriesListRep from a dict
series_list_rep_from_dict = SeriesListRep.from_dict(series_list_rep_dict)

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