All Downloads are FREE. Search and download functionalities are using the official Maven repository.

telegramium.bots.ForumTopic.scala Maven / Gradle / Ivy

package telegramium.bots

/** This object represents a forum topic.
  *
  * @param messageThreadId
  *   Unique identifier of the forum topic
  * @param name
  *   Name of the topic
  * @param iconColor
  *   Color of the topic icon in RGB format
  * @param iconCustomEmojiId
  *   Optional. Unique identifier of the custom emoji shown as the topic icon
  */
final case class ForumTopic(
  messageThreadId: Int,
  name: String,
  iconColor: Int,
  iconCustomEmojiId: Option[String] = Option.empty
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy