Interface RawApplicationCommandInteractionData

interface RawApplicationCommandInteractionData {
    guild_id?: string;
    id: string;
    name: string;
    options?: InteractionOptions[];
    resolved?: RawApplicationCommandInteractionResolvedData;
    target_id?: string;
    type: ApplicationCommandTypes;
}

Properties

guild_id?: string
id: string
name: string
options?: InteractionOptions[]
target_id?: string