Metadata associated with a state interval
| Name | Type | Description | Notes |
|---|---|---|---|
| metadata_type | str | [optional] [readonly] | |
| reason | StateReason | [optional] | |
| comment | str | [optional] | |
| category | StateCategory | [optional] |
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)