SyncPlayGroupLeftUpdate

Properties

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

Example

from jellyfin.generated.api_10_11.models.sync_play_group_left_update import SyncPlayGroupLeftUpdate

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

# convert the object into a dict
sync_play_group_left_update_dict = sync_play_group_left_update_instance.to_dict()
# create an instance of SyncPlayGroupLeftUpdate from a dict
sync_play_group_left_update_from_dict = SyncPlayGroupLeftUpdate.from_dict(sync_play_group_left_update_dict)

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