Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 938 Bytes

SeriesKeyValueInner.md

File metadata and controls

28 lines (19 loc) · 938 Bytes

SeriesKeyValueInner

Properties

Name Type Description Notes

Example

from waylay.services.data.models.series_key_value_inner import SeriesKeyValueInner

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

# convert the object into a dict
series_key_value_inner_dict = series_key_value_inner_instance.to_dict()
# create an instance of SeriesKeyValueInner from a dict
series_key_value_inner_form_dict = series_key_value_inner.from_dict(series_key_value_inner_dict)

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