Class DiscordGuildWelcomeChannelData
Represents a discord Welcome Screen Channel Structure API model. Docs: https://discord.com/developers/docs/resources/guild#welcome-screen-object-welcome-screen-channel-structure
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Color_Chan.Discord.Core.Common.API.DataModels.Guild
Assembly: Color-Chan.Discord.Core.dll
Syntax
public class DiscordGuildWelcomeChannelData : IEquatable<DiscordGuildWelcomeChannelData>
Properties
| Improve this Doc View SourceChannelId
The channel's id.
Declaration
[JsonPropertyName("channel_id")]
public ulong ChannelId { get; set; }
Property Value
Type | Description |
---|---|
System.UInt64 |
Description
The description shown for the channel
Declaration
[JsonPropertyName("description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
String |
EmojiId
The emoji id, if the emoji is custom.
Declaration
[JsonPropertyName("emoji_id")]
public string EmojiId { get; set; }
Property Value
Type | Description |
---|---|
String |
EmojiName
The emoji name if custom, the unicode character if standard, or null if no emoji is set.
Declaration
[JsonPropertyName("emoji_name")]
public string EmojiName { get; set; }
Property Value
Type | Description |
---|---|
String |