c

ackcord.data.raw

RawThreadMetadata

case class RawThreadMetadata(archived: Boolean, autoArchiveDuration: Int, archiveTimestamp: OffsetDateTime, locked: Boolean, invitable: Option[Boolean]) extends Product with Serializable

Thread specific info.

archived

If the thread is archived.

autoArchiveDuration

How long in minutes until the thread will be auto archived.

archiveTimestamp

When the thread's archive status was last changed

locked

If the thread is locked.

Source
rawData.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RawThreadMetadata
  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 RawThreadMetadata(archived: Boolean, autoArchiveDuration: Int, archiveTimestamp: OffsetDateTime, locked: Boolean, invitable: Option[Boolean])

    archived

    If the thread is archived.

    autoArchiveDuration

    How long in minutes until the thread will be auto archived.

    archiveTimestamp

    When the thread's archive status was last changed

    locked

    If the thread is locked.

Value Members

  1. val archiveTimestamp: OffsetDateTime
  2. val archived: Boolean
  3. val autoArchiveDuration: Int
  4. val invitable: Option[Boolean]
  5. val locked: Boolean
  6. def productElementNames: Iterator[String]
    Definition Classes
    Product