Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.08 KB

File metadata and controls

33 lines (24 loc) · 1.08 KB

StateMetadata

Metadata associated with a state interval

Properties

Name Type Description Notes
metadata_type str [optional] [readonly]
reason StateReason [optional]
comment str [optional]
category StateCategory [optional]

Example

from oden.models.state_metadata import StateMetadata

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

# convert the object into a dict
state_metadata_dict = state_metadata_instance.to_dict()
# create an instance of StateMetadata from a dict
state_metadata_from_dict = StateMetadata.from_dict(state_metadata_dict)

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