Series

Properties

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

Example

from scc_firewall_manager_sdk.models.series import Series

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

# convert the object into a dict
series_dict = series_instance.to_dict()
# create an instance of Series from a dict
series_form_dict = series.from_dict(series_dict)

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