Class DiscordEmbedFooterData
Represents a discord Embed Footer Structure API model. Docs: https://discord.com/developers/docs/resources/channel#embed-object-embed-footer-structure
Inheritance
System.Object
DiscordEmbedFooterData
Implements
System.IEquatable<DiscordEmbedFooterData>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Color_Chan.Discord.Core.Common.API.DataModels.Embed
Assembly: Color-Chan.Discord.Core.dll
Syntax
public class DiscordEmbedFooterData : IEquatable<DiscordEmbedFooterData>
Properties
| Improve this Doc View SourceIconUrl
Url of footer icon (only supports http(s) and attachments).
Declaration
[JsonPropertyName("icon_url")]
public string IconUrl { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ProxyIconUrl
A proxied url of footer icon.
Declaration
[JsonPropertyName("proxy_icon_url")]
public string ProxyIconUrl { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Text
Footer text.
Declaration
[JsonPropertyName("text")]
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Implements
System.IEquatable<T>