AllowedMentionsBuilder

export declare class AllowedMentionsBuilder implements JSONEncodable<APIAllowedMentions>
export declare class AllowedMentionsBuilder implements JSONEncodable<APIAllowedMentions>
A builder that creates API-compatible JSON data for allowed mentions.
constructor(data?)
Creates new allowed mention builder from API data.
NameTypeOptionalDescription
dataPartial<APIAllowedMentions>YesThe API data to create this attachment with
addRoles(...roles):this
Adds roles to mention.
NameTypeOptionalDescription
...rolesRestOrArray<Snowflake>NoThe roles to mention
addUsers(...users):this
Adds users to mention.
NameTypeOptionalDescription
...usersRestOrArray<Snowflake>NoThe users to mention
setParse(...parse):this
Sets the types of mentions to parse from the content.
NameTypeOptionalDescription
...parseRestOrArray<AllowedMentionsTypes>NoThe types of mentions to parse from the content
setRepliedUser(repliedUser?):this
For replies, sets whether to mention the author of the message being replied to
NameTypeOptionalDescription
repliedUserbooleanYesNone
setRoles(...roles):this
Sets the roles to mention.
NameTypeOptionalDescription
...rolesRestOrArray<Snowflake>NoThe roles to mention
setUsers(...users):this
Sets the users to mention.
NameTypeOptionalDescription
...usersRestOrArray<Snowflake>NoThe users to mention
spliceRoles(index, deleteCount, ...roles):this
Removes, replaces, or inserts roles.
Remarks
This method behaves similarly to Array.prototype.splice().It's useful for modifying and adjusting order of the already-existing roles.
Example
Remove the first role:
allowedMentions.spliceRoles(0, 1);
allowedMentions.spliceRoles(0, 1);
Example
Remove the first n role:
const n = 4;
allowedMentions.spliceRoles(0, n);
const n = 4;
allowedMentions.spliceRoles(0, n);
Example
Remove the last role:
allowedMentions.spliceRoles(-1, 1);
allowedMentions.spliceRoles(-1, 1);
NameTypeOptionalDescription
indexnumberNoThe index to start at
deleteCountnumberNoThe number of roles to remove
...rolesRestOrArray<Snowflake>NoThe replacing role ids
spliceUsers(index, deleteCount, ...users):this
Removes, replaces, or inserts users.
Remarks
This method behaves similarly to Array.prototype.splice().It's useful for modifying and adjusting order of the already-existing users.
Example
Remove the first user:
allowedMentions.spliceUsers(0, 1);
allowedMentions.spliceUsers(0, 1);
Example
Remove the first n user:
const n = 4;
allowedMentions.spliceUsers(0, n);
const n = 4;
allowedMentions.spliceUsers(0, n);
Example
Remove the last user:
allowedMentions.spliceUsers(-1, 1);
allowedMentions.spliceUsers(-1, 1);
NameTypeOptionalDescription
indexnumberNoThe index to start at
deleteCountnumberNoThe number of users to remove
...usersRestOrArray<Snowflake>NoThe replacing user ids
toJSON(validationOverride?):APIAllowedMentions
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