SyncPlayGroupUpdateMessage
Untyped sync play command.
Properties
Name | Type | Description | Notes |
---|---|---|---|
data | GroupUpdate | Group update data | [optional] |
message_id | str | Gets or sets the message id. | [optional] |
message_type | SessionMessageType | The different kinds of messages that are used in the WebSocket api. | [optional] [readonly] [default to SessionMessageType.SYNCPLAYGROUPUPDATE] |
Example
from jellyfin.generated.api_10_11.models.sync_play_group_update_message import SyncPlayGroupUpdateMessage
# TODO update the JSON string below
json = "{}"
# create an instance of SyncPlayGroupUpdateMessage from a JSON string
sync_play_group_update_message_instance = SyncPlayGroupUpdateMessage.from_json(json)
# print the JSON string representation of the object
print(SyncPlayGroupUpdateMessage.to_json())
# convert the object into a dict
sync_play_group_update_message_dict = sync_play_group_update_message_instance.to_dict()
# create an instance of SyncPlayGroupUpdateMessage from a dict
sync_play_group_update_message_from_dict = SyncPlayGroupUpdateMessage.from_dict(sync_play_group_update_message_dict)