case class AllowedMention(parse: Seq[AllowedMentionTypes] = Seq.empty, roles: Seq[RoleId] = Seq.empty, users: Seq[UserId] = Seq.empty, repliedUser: Boolean = false) extends Product with Serializable
- parse
Which mention types should be allowed.
- roles
The roles to allow mention.
- users
The users to allow mention.
- repliedUser
For replires, if the author of the message you are replying to should be mentioned.
- Source
- message.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- AllowedMention
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new AllowedMention(parse: Seq[AllowedMentionTypes] = Seq.empty, roles: Seq[RoleId] = Seq.empty, users: Seq[UserId] = Seq.empty, repliedUser: Boolean = false)
- parse
Which mention types should be allowed.
- roles
The roles to allow mention.
- users
The users to allow mention.
- repliedUser
For replires, if the author of the message you are replying to should be mentioned.