Class SendCommand.

SendCommand

interface SendCommand {
    Command?: SendCommandType;
    EmittedAt?: string;
    GroupId?: string;
    PlaylistItemId?: string;
    PositionTicks?: null | number;
    When?: string;
}

Properties

Command?: SendCommandType

SendCommand

EmittedAt?: string

Gets the UTC time when this command has been emitted.

SendCommand

GroupId?: string

Gets the group identifier.

SendCommand

PlaylistItemId?: string

Gets the playlist identifier of the playing item.

SendCommand

PositionTicks?: null | number

Gets the position ticks.

SendCommand

When?: string

Gets or sets the UTC time when to execute the command.

SendCommand