GroupUpdate
Represents the list of possible group update types
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.USERLEFT] |
Example
from jellyfin.generated.api_10_11.models.group_update import GroupUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of GroupUpdate from a JSON string
group_update_instance = GroupUpdate.from_json(json)
# print the JSON string representation of the object
print(GroupUpdate.to_json())
# convert the object into a dict
group_update_dict = group_update_instance.to_dict()
# create an instance of GroupUpdate from a dict
group_update_from_dict = GroupUpdate.from_dict(group_update_dict)