PlayMessage
Play command websocket message.
Properties
Name | Type | Description | Notes |
---|---|---|---|
data | PlayRequest | [optional] | |
message_id | str | Gets or sets the message id. | [optional] |
message_type | SessionMessageType | [optional] |
Example
from jellyfin.generated.api_10_10.models.play_message import PlayMessage
# TODO update the JSON string below
json = "{}"
# create an instance of PlayMessage from a JSON string
play_message_instance = PlayMessage.from_json(json)
# print the JSON string representation of the object
print(PlayMessage.to_json())
# convert the object into a dict
play_message_dict = play_message_instance.to_dict()
# create an instance of PlayMessage from a dict
play_message_from_dict = PlayMessage.from_dict(play_message_dict)