SyncPlayNotInGroupUpdate
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.NOTINGROUP] |
Example
from jellyfin.generated.api_10_11.models.sync_play_not_in_group_update import SyncPlayNotInGroupUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of SyncPlayNotInGroupUpdate from a JSON string
sync_play_not_in_group_update_instance = SyncPlayNotInGroupUpdate.from_json(json)
# print the JSON string representation of the object
print(SyncPlayNotInGroupUpdate.to_json())
# convert the object into a dict
sync_play_not_in_group_update_dict = sync_play_not_in_group_update_instance.to_dict()
# create an instance of SyncPlayNotInGroupUpdate from a dict
sync_play_not_in_group_update_from_dict = SyncPlayNotInGroupUpdate.from_dict(sync_play_not_in_group_update_dict)
[Back to Model list] [Back to API list] [Back to README]