Interface RawApplicationCommandInteractionResolvedData

interface RawApplicationCommandInteractionResolvedData {
    attachments?: Record<string, RawAttachment>;
    channels?: Record<string, RawInteractionResolvedChannel>;
    members?: Record<string, Omit<RawMember, "user" | "deaf" | "mute">>;
    messages?: Record<string, RawMessage>;
    roles?: Record<string, RawRole>;
    users?: Record<string, RawUser>;
}

Properties

attachments?: Record<string, RawAttachment>
members?: Record<string, Omit<RawMember, "user" | "deaf" | "mute">>
messages?: Record<string, RawMessage>
roles?: Record<string, RawRole>
users?: Record<string, RawUser>