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
- Alphabetic
- By Inheritance
Inherited
- RequestGuildMembersData
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- 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.