c

ackcord.gateway

RequestGuildMembersData

case class RequestGuildMembersData(guildId: GuildId, query: Option[String] = None, limit: Option[Int] = None, presences: Boolean = false, userIds: Option[Seq[UserId]], nonce: Option[String]) extends Product with Serializable

guildId

The guildId(s) to request for.

query

Return all the users where their username start with this. or an empty string for all users.

limit

The amount of users to send, or 0 for all users.

presences

If the presences of the users should be sent too.

userIds

Users to fetch.

Source
gatewayData.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RequestGuildMembersData
  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 RequestGuildMembersData(guildId: GuildId, query: Option[String] = None, limit: Option[Int] = None, presences: Boolean = false, userIds: Option[Seq[UserId]], nonce: Option[String])

    guildId

    The guildId(s) to request for.

    query

    Return all the users where their username start with this. or an empty string for all users.

    limit

    The amount of users to send, or 0 for all users.

    presences

    If the presences of the users should be sent too.

    userIds

    Users to fetch.

Value Members

  1. val guildId: GuildId
  2. val limit: Option[Int]
  3. val nonce: Option[String]
  4. val presences: Boolean
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product
  6. val query: Option[String]
  7. val userIds: Option[Seq[UserId]]