Discord.https - v3.0.16
    Preparing search index...

    Interface APIApplicationCommandIntegerOptionBase

    interface APIApplicationCommandIntegerOptionBase {
        description: string;
        description_localizations?: null | Partial<Record<Locale, null | string>>;
        max_value?: number;
        min_value?: number;
        name: string;
        name_localizations?: null | Partial<Record<Locale, null | string>>;
        required?: boolean;
        type: Integer;
    }

    Hierarchy (View Summary)

    Index

    Properties

    description: string
    description_localizations?: null | Partial<Record<Locale, null | string>>
    max_value?: number

    If the option is an INTEGER or NUMBER type, the maximum value permitted.

    min_value?: number

    If the option is an INTEGER or NUMBER type, the minimum value permitted.

    name: string
    name_localizations?: null | Partial<Record<Locale, null | string>>
    required?: boolean
    type: Integer