case class GuildScheduledEvent(id: SnowflakeType[GuildScheduledEvent], guildId: GuildId, channelId: Option[VoiceGuildChannelId], creatorId: Option[UserId], name: String, description: Option[String], scheduledStartTime: OffsetDateTime, scheduledEndTime: Option[OffsetDateTime], privacyLevel: GuildScheduledEventPrivacyLevel, status: GuildScheduledEventStatus, entityType: GuildScheduledEventEntityType, entityId: Option[SnowflakeType[StageInstance]], entityMetadata: Option[GuildScheduledEventEntityMetadata], creator: Option[User], userCount: Option[Int]) extends Product with Serializable
A scheduled event within a guild.
- id
The id of the event
- guildId
The id of the guild the event takes place in.
- channelId
The id of the channel the event takes place in, if it takes place in a channel.
- creatorId
The creator id of the event.
- name
Name of the event.
- description
Description of the event.
- scheduledStartTime
Time the event will start.
- scheduledEndTime
Time the event will end.
- privacyLevel
Privacy level of the event.
- status
Status of the event.
- entityType
The type of the event.
- entityId
Id of an entity associated with the event.
- entityMetadata
Additional metadata.
- creator
The creator of the event.
- userCount
Number of users subscribed to the event.
- Alphabetic
- By Inheritance
- GuildScheduledEvent
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new GuildScheduledEvent(id: SnowflakeType[GuildScheduledEvent], guildId: GuildId, channelId: Option[VoiceGuildChannelId], creatorId: Option[UserId], name: String, description: Option[String], scheduledStartTime: OffsetDateTime, scheduledEndTime: Option[OffsetDateTime], privacyLevel: GuildScheduledEventPrivacyLevel, status: GuildScheduledEventStatus, entityType: GuildScheduledEventEntityType, entityId: Option[SnowflakeType[StageInstance]], entityMetadata: Option[GuildScheduledEventEntityMetadata], creator: Option[User], userCount: Option[Int])
- id
The id of the event
- guildId
The id of the guild the event takes place in.
- channelId
The id of the channel the event takes place in, if it takes place in a channel.
- creatorId
The creator id of the event.
- name
Name of the event.
- description
Description of the event.
- scheduledStartTime
Time the event will start.
- scheduledEndTime
Time the event will end.
- privacyLevel
Privacy level of the event.
- status
Status of the event.
- entityType
The type of the event.
- entityId
Id of an entity associated with the event.
- entityMetadata
Additional metadata.
- creator
The creator of the event.
- userCount
Number of users subscribed to the event.
Value Members
- val channelId: Option[VoiceGuildChannelId]
- val creator: Option[User]
- val creatorId: Option[UserId]
- val description: Option[String]
- val entityId: Option[SnowflakeType[StageInstance]]
- val entityMetadata: Option[GuildScheduledEventEntityMetadata]
- val entityType: GuildScheduledEventEntityType
- val guildId: GuildId
- val id: SnowflakeType[GuildScheduledEvent]
- val name: String
- val privacyLevel: GuildScheduledEventPrivacyLevel
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val scheduledEndTime: Option[OffsetDateTime]
- val scheduledStartTime: OffsetDateTime
- val status: GuildScheduledEventStatus
- val userCount: Option[Int]