case class Webhook(id: SnowflakeType[Webhook], type: WebhookType, guildId: Option[GuildId], channelId: TextGuildChannelId, user: Option[User], name: Option[String], avatar: Option[String], token: Option[String], applicationId: Option[ApplicationId], sourceGuild: Option[WebhookSourceGuild], sourceChannel: Option[WebhookSourceChannel], url: Option[String]) extends GetGuildOpt with Product with Serializable
A webhook
- id
The webhook id
- guildId
The guild it belongs to
- channelId
The channel it belongs to
- user
The user that created the webhook. Not present when getting a webhook with a token.
- name
The name of the webhook
- avatar
The default avatar hash of the webhook.
- token
The token of the webhook.
- applicationId
The bot or OAuth2 application that created the webhook
- sourceGuild
The guild of the channel this webhook is following (For channel follower webhooks)
- sourceChannel
The channel this webhook is following (For channel follower webhooks)
- url
Url used for executing the webhook (Returned by the webhooks OAuth2 flow)
- Source
- Webhook.scala
- Alphabetic
- By Inheritance
- Webhook
- Serializable
- Product
- Equals
- GetGuildOpt
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Webhook(id: SnowflakeType[Webhook], type: WebhookType, guildId: Option[GuildId], channelId: TextGuildChannelId, user: Option[User], name: Option[String], avatar: Option[String], token: Option[String], applicationId: Option[ApplicationId], sourceGuild: Option[WebhookSourceGuild], sourceChannel: Option[WebhookSourceChannel], url: Option[String])
- id
The webhook id
- guildId
The guild it belongs to
- channelId
The channel it belongs to
- user
The user that created the webhook. Not present when getting a webhook with a token.
- name
The name of the webhook
- avatar
The default avatar hash of the webhook.
- token
The token of the webhook.
- applicationId
The bot or OAuth2 application that created the webhook
- sourceGuild
The guild of the channel this webhook is following (For channel follower webhooks)
- sourceChannel
The channel this webhook is following (For channel follower webhooks)
- url
Url used for executing the webhook (Returned by the webhooks OAuth2 flow)
Value Members
- val applicationId: Option[ApplicationId]
- val avatar: Option[String]
- val channelId: TextGuildChannelId
- def guild(implicit snapshot: CacheSnapshot): Option[GatewayGuild]
The guild for this object
The guild for this object
- Definition Classes
- GetGuildOpt
- val guildId: Option[GuildId]
- Definition Classes
- Webhook → GetGuildOpt
- val id: SnowflakeType[Webhook]
- val name: Option[String]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val sourceChannel: Option[WebhookSourceChannel]
- val sourceGuild: Option[WebhookSourceGuild]
- def textGuildChannel(implicit snapshot: CacheSnapshot): Option[TextGuildChannel]
Resolve the channel of this webhook as a guild channel
- val token: Option[String]
- val type: WebhookType
- val url: Option[String]
- val user: Option[User]