interface APIMessageMentionableSelectInteractionData {
    component_type: MentionableSelect;
    custom_id: string;
    resolved: Pick<APIInteractionDataResolved, "roles" | "users" | "members">;
    values: string[];
}

Hierarchy (View Summary)

Properties

component_type: MentionableSelect

The type of the component

custom_id: string

The custom_id of the component

resolved: Pick<APIInteractionDataResolved, "roles" | "users" | "members">
values: string[]