Packages

c

ackcord.data

GroupDMChannel

case class GroupDMChannel(id: SnowflakeType[GroupDMChannel], name: String, users: Seq[UserId], lastMessageId: Option[MessageId], ownerId: UserId, applicationId: Option[ApplicationId], icon: Option[String]) extends Channel with TextChannel with Product with Serializable

A group DM text channel

users

The users in this group DM

ownerId

The creator of this channel

applicationId

The applicationId of the application that created this channel, if the channel wasn't created by a user

icon

The icon hash for this group dm

Source
channel.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GroupDMChannel
  2. Serializable
  3. Product
  4. Equals
  5. TextChannel
  6. Channel
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new GroupDMChannel(id: SnowflakeType[GroupDMChannel], name: String, users: Seq[UserId], lastMessageId: Option[MessageId], ownerId: UserId, applicationId: Option[ApplicationId], icon: Option[String])

    users

    The users in this group DM

    ownerId

    The creator of this channel

    applicationId

    The applicationId of the application that created this channel, if the channel wasn't created by a user

    icon

    The icon hash for this group dm

Value Members

  1. val applicationId: Option[ApplicationId]
  2. def channelType: ChannelType

    The channel type of this channel

    The channel type of this channel

    Definition Classes
    GroupDMChannelChannel
  3. val icon: Option[String]
  4. val id: SnowflakeType[GroupDMChannel]

    The id of the channel

    The id of the channel

    Definition Classes
    GroupDMChannelTextChannelChannel
  5. def lastMessage(implicit c: CacheSnapshot): Option[Message]

    Gets the last message for this channel if it exists.

    Gets the last message for this channel if it exists.

    Definition Classes
    TextChannel
  6. val lastMessageId: Option[MessageId]

    Points to the last message id in the channel.

    Points to the last message id in the channel. The id might not point to a valid or existing message.

    Definition Classes
    GroupDMChannelTextChannel
  7. def mention: String

    Get a representation of this channel that can refer to it in messages.

    Get a representation of this channel that can refer to it in messages.

    Definition Classes
    Channel
  8. val name: String
  9. def owner(implicit c: CacheSnapshot): Option[User]

    Gets the owner for this group DM.

  10. val ownerId: UserId
  11. def productElementNames: Iterator[String]
    Definition Classes
    Product
  12. val users: Seq[UserId]