SyncPlayCommandMessage
Sync play command.
Properties
Name | Type | Description | Notes |
---|---|---|---|
data | SendCommand | [optional] | |
message_id | str | Gets or sets the message id. | [optional] |
message_type | SessionMessageType | [optional] |
Example
from jellyfin.generated.api_10_10.models.sync_play_command_message import SyncPlayCommandMessage
# TODO update the JSON string below
json = "{}"
# create an instance of SyncPlayCommandMessage from a JSON string
sync_play_command_message_instance = SyncPlayCommandMessage.from_json(json)
# print the JSON string representation of the object
print(SyncPlayCommandMessage.to_json())
# convert the object into a dict
sync_play_command_message_dict = sync_play_command_message_instance.to_dict()
# create an instance of SyncPlayCommandMessage from a dict
sync_play_command_message_from_dict = SyncPlayCommandMessage.from_dict(sync_play_command_message_dict)