Interface JSONCommandInteraction

interface JSONCommandInteraction {
    appPermissions?: JSONPermission;
    applicationID: string;
    channelID: string;
    createdAt: number;
    data: ApplicationCommandInteractionData<Uncached | AnyInteractionChannel, ApplicationCommandTypes>;
    guildID?: string;
    guildLocale?: string;
    id: string;
    locale: string;
    member?: JSONMember;
    token: string;
    type: APPLICATION_COMMAND;
    user: JSONUser;
    version: 1;
}

Hierarchy (view full)

Properties

appPermissions?: JSONPermission
applicationID: string
channelID: string
createdAt: number
guildID?: string
guildLocale?: string
id: string
locale: string
member?: JSONMember
token: string
user: JSONUser
version: 1