case class WebhookAuthor(id: SnowflakeType[Webhook], username: String, discriminator: String, avatar: Option[String]) extends Author[Webhook] with Product with Serializable
An webhook author
- id
The webhook id
- username
The name of the webhook
- avatar
The webhook's avatar hash
- Source
- message.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- WebhookAuthor
- Serializable
- Product
- Equals
- Author
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new WebhookAuthor(id: SnowflakeType[Webhook], username: String, discriminator: String, avatar: Option[String])
- id
The webhook id
- username
The name of the webhook
- avatar
The webhook's avatar hash
Value Members
- val avatar: Option[String]
- val discriminator: String
The discriminator of the author.
The discriminator of the author.
- Definition Classes
- WebhookAuthor → Author
- val id: SnowflakeType[Webhook]
The id for this author.
The id for this author.
- Definition Classes
- WebhookAuthor → Author
- def isUser: Boolean
If this author is not a webhook.
If this author is not a webhook.
- Definition Classes
- WebhookAuthor → Author
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val username: String
The name of the author.
The name of the author.
- Definition Classes
- WebhookAuthor → Author