Interface IDiscordEmbedFooter
Represents a discord Embed Footer Structure API model. Docs: https://discord.com/developers/docs/resources/channel#embed-object-embed-footer-structure
Namespace: Color_Chan.Discord.Core.Common.Models.Embed
Assembly: Color-Chan.Discord.Core.dll
Syntax
public interface IDiscordEmbedFooter
Properties
| Improve this Doc View SourceIconUrl
Url of footer icon (only supports http(s) and attachments).
Declaration
string IconUrl { get; set; }
Property Value
Type | Description |
---|---|
String |
ProxyIconUrl
A proxied url of footer icon.
Declaration
string ProxyIconUrl { get; set; }
Property Value
Type | Description |
---|---|
String |
Text
Footer text.
Declaration
string Text { get; set; }
Property Value
Type | Description |
---|---|
String |
Methods
| Improve this Doc View SourceToDataModel()
Converts the model back to a discord data model so that it can be send to discord.
Declaration
DiscordEmbedFooterData ToDataModel()
Returns
Type | Description |
---|---|
DiscordEmbedFooterData | The converted DiscordEmbedFooterData. |