GroupStateUpdate

Class GroupStateUpdate.

Properties

Name Type Description Notes
state GroupStateType [optional]
reason PlaybackRequestType [optional]

Example

from jellyfin.generated.api_10_10.models.group_state_update import GroupStateUpdate

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

# convert the object into a dict
group_state_update_dict = group_state_update_instance.to_dict()
# create an instance of GroupStateUpdate from a dict
group_state_update_from_dict = GroupStateUpdate.from_dict(group_state_update_dict)

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