Interface StringOptions

interface StringOptions {
    autocomplete?: boolean;
    choices?: readonly CommandChoices[];
    description: string;
    displayDescription?: string;
    displayName?: string;
    focused?: boolean;
    max_length?: number;
    min_length?: number;
    name: string;
    required?: boolean;
    serverLocalizedName?: string;
    type: String;
}

Hierarchy (view full)

Properties

autocomplete?: boolean
choices?: readonly CommandChoices[]
description: string
displayDescription?: string
displayName?: string
focused?: boolean
max_length?: number
min_length?: number
name: string
required?: boolean
serverLocalizedName?: string
type: String