SyncPlayPlayQueueUpdate

Properties

Name Type Description Notes
group_id str Gets the group identifier. [optional] [readonly]
data PlayQueueUpdate Gets the update data. [optional] [readonly]
type GroupUpdateType Enum GroupUpdateType. [optional] [readonly] [default to GroupUpdateType.PLAYQUEUE]

Example

from jellyfin.generated.api_10_11.models.sync_play_play_queue_update import SyncPlayPlayQueueUpdate

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

# convert the object into a dict
sync_play_play_queue_update_dict = sync_play_play_queue_update_instance.to_dict()
# create an instance of SyncPlayPlayQueueUpdate from a dict
sync_play_play_queue_update_from_dict = SyncPlayPlayQueueUpdate.from_dict(sync_play_play_queue_update_dict)

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