SendCommand

Class SendCommand.

Properties

Name Type Description Notes
group_id str Gets the group identifier. [optional]
playlist_item_id str Gets the playlist identifier of the playing item. [optional]
when datetime Gets or sets the UTC time when to execute the command. [optional]
position_ticks int Gets the position ticks. [optional]
command SendCommandType [optional]
emitted_at datetime Gets the UTC time when this command has been emitted. [optional]

Example

from jellyfin.generated.api_10_10.models.send_command import SendCommand

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

# convert the object into a dict
send_command_dict = send_command_instance.to_dict()
# create an instance of SendCommand from a dict
send_command_from_dict = SendCommand.from_dict(send_command_dict)

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