SyncPlayLibraryAccessDeniedUpdate

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.LIBRARYACCESSDENIED]

Example

from jellyfin.generated.api_10_11.models.sync_play_library_access_denied_update import SyncPlayLibraryAccessDeniedUpdate

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

# convert the object into a dict
sync_play_library_access_denied_update_dict = sync_play_library_access_denied_update_instance.to_dict()
# create an instance of SyncPlayLibraryAccessDeniedUpdate from a dict
sync_play_library_access_denied_update_from_dict = SyncPlayLibraryAccessDeniedUpdate.from_dict(sync_play_library_access_denied_update_dict)

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