Class EmbedAuthor
- Namespace
- NetCord
- Assembly
- NetCord.dll
Contains information about the author of an embed, used to render the author block.
public class EmbedAuthor : IJsonModel<JsonEmbedAuthor>
- Inheritance
-
EmbedAuthor
- Implements
- Inherited Members
Constructors
EmbedAuthor(JsonEmbedAuthor)
Contains information about the author of an embed, used to render the author block.
public EmbedAuthor(JsonEmbedAuthor jsonModel)
Parameters
jsonModel
JsonEmbedAuthor
Properties
IconUrl
Points to an image, which is displayed in a small circular format to the left of the Name.
public string? IconUrl { get; }
Property Value
Name
The name of the author, displayed next to the icon if one is specified in IconUrl.
public string? Name { get; }
Property Value
ProxyIconUrl
The URL of the icon image, proxied by the Discord CDN server.
public string? ProxyIconUrl { get; }
Property Value
Url
When set, turns the Name into a clickable link, pointing to the specified URL.
public string? Url { get; }