interface PageData {
    allowedMentions?: MessageMentionOptions;
    components?: readonly (APIActionRowComponent<APIMessageActionRowComponent> | JSONEncodable<APIActionRowComponent<APIMessageActionRowComponent>> | ActionRowData<MessageActionRowComponentData | MessageActionRowComponentBuilder>)[];
    content?: string;
    embeds?: readonly (APIEmbed | JSONEncodable<APIEmbed>)[];
    files?: readonly (BufferResolvable | Stream | JSONEncodable<APIAttachment> | Attachment | AttachmentBuilder | AttachmentPayload)[];
    message?: MessageResolvable;
    poll?: PollData;
}

Hierarchy

  • BaseMessageOptions
    • PageData

Properties

allowedMentions?: MessageMentionOptions
components?: readonly (APIActionRowComponent<APIMessageActionRowComponent> | JSONEncodable<APIActionRowComponent<APIMessageActionRowComponent>> | ActionRowData<MessageActionRowComponentData | MessageActionRowComponentBuilder>)[]
content?: string
embeds?: readonly (APIEmbed | JSONEncodable<APIEmbed>)[]
files?: readonly (BufferResolvable | Stream | JSONEncodable<APIAttachment> | Attachment | AttachmentBuilder | AttachmentPayload)[]
message?: MessageResolvable
poll?: PollData