Class DiscordEmbedFieldData
Represents a discord Embed Field Structure API model. Docs: https://discord.com/developers/docs/resources/channel#embed-object-embed-field-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 DiscordEmbedFieldData : IEquatable<DiscordEmbedFieldData>
Properties
| Improve this Doc View SourceInline
Whether or not this field should display inline.
Declaration
[JsonPropertyName("inline")]
public bool? Inline { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<Boolean> |
Name
Name of the field.
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |
Value
Value of the field.
Declaration
[JsonPropertyName("value")]
public string Value { get; set; }
Property Value
Type | Description |
---|---|
String |