Interface ReadyCheckTemplateInput

Input for creating/updating a ready check template.

interface ReadyCheckTemplateInput {
    color?: string;
    id?: string;
    keyCombo?: string;
    message: string;
    name?: string;
    target?: Partial<ReadyCheckTarget>;
}

Properties

color?: string

Hex color for the UI (e.g. "#34CD84").

id?: string

Existing template ID (for updates). Omit to create.

keyCombo?: string

Keyboard shortcut hint.

message: string

Message shown to participants (required, max 280 chars).

name?: string

Display name for the ready check.

target?: Partial<ReadyCheckTarget>

Target audience configuration.