Class DiscordEmbedFieldData
Represents a discord Embed Field Structure API model. Docs: https://discord.com/developers/docs/resources/channel#embed-object-embed-field-structure
Inheritance
System.Object
DiscordEmbedFieldData
Implements
System.IEquatable<DiscordEmbedFieldData>
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 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<System.Boolean> |
Name
Name of the field.
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Value
Value of the field.
Declaration
[JsonPropertyName("value")]
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Implements
System.IEquatable<T>