Interface AutocompleteInteractionResponse

interface AutocompleteInteractionResponse {
    data: {
        choices: AutocompleteChoice[];
    };
    type: APPLICATION_COMMAND_AUTOCOMPLETE_RESULT;
}

Properties

Properties

data: {
    choices: AutocompleteChoice[];
}

Type declaration