interface Input {
    action_id: string;
    max_length: number;
    min_length: number;
    multiline: boolean;
    placeholder: string;
    text: string;
    type: "plain_text_input";
    value: string;
}

Properties

action_id: string
max_length: number
min_length: number
multiline: boolean
placeholder: string
text: string
type: "plain_text_input"
value: string