Packages

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
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AllowedMention
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. 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.

Value Members

  1. val parse: Seq[AllowedMentionTypes]
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. val repliedUser: Boolean
  4. val roles: Seq[RoleId]
  5. val users: Seq[UserId]