Class DiscordEmbedAuthorData
Represents a discord Embed Author Structure API model. Docs: https://discord.com/developers/docs/resources/channel#embed-object-embed-author-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.Embed
Assembly: Color-Chan.Discord.Core.dll
Syntax
public class DiscordEmbedAuthorData : IEquatable<DiscordEmbedAuthorData>
Properties
| Improve this Doc View SourceIconUrl
Url of author icon (only supports http(s) and attachments).
Declaration
[JsonPropertyName("icon_url")]
public string IconUrl { get; set; }
Property Value
Type | Description |
---|---|
String |
Name
Name of author.
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |
ProxyIconUrl
A proxied url of author icon.
Declaration
[JsonPropertyName("proxy_icon_url")]
public string ProxyIconUrl { get; set; }
Property Value
Type | Description |
---|---|
String |
Url
Url of author.
Declaration
[JsonPropertyName("url")]
public string Url { get; set; }
Property Value
Type | Description |
---|---|
String |