MessageReferenceBuilder

export declare class MessageReferenceBuilder implements JSONEncodable<MessageReferenceBuilderData>
export declare class MessageReferenceBuilder implements JSONEncodable<MessageReferenceBuilderData>
A builder that creates API-compatible JSON data for message references.
constructor(data?)
Creates new allowed mention builder from API data.
NameTypeOptionalDescription
dataPartial<MessageReferenceBuilderData>YesThe API data to create this attachment with
clearChannelId():this
Clear the id of the channel being referenced
clearGuildId():this
Clear the id of the guild being referenced
clearType():this
Clear the type of message reference this represents
setChannelId(channelId):this
Sets the id of the channel being referenced
NameTypeOptionalDescription
channelIdSnowflakeNoThe id of the channel being referenced
setGuildId(guildId):this
Sets the id of the guild being referenced
NameTypeOptionalDescription
guildIdSnowflakeNoThe id of the guild being referenced
setMessageId(messageId):this
Sets the id of the message being referenced
NameTypeOptionalDescription
messageIdSnowflakeNoThe id of the message being referenced
setType(type):this
Sets the types of message reference this represents
NameTypeOptionalDescription
typeMessageReferenceTypeNoThe type of message reference
toJSON(validationOverride?):MessageReferenceBuilderData
Serializes this builder to API-compatible JSON data.Note that by disabling validation, there is no guarantee that the resulting object will be valid.
NameTypeOptionalDescription
validationOverridebooleanYesForce validation to run/not run regardless of your global preference