Search Results for

    Show / Hide Table of Contents

    Class DiscordEmbedFieldData

    Represents a discord Embed Field Structure API model. Docs: https://discord.com/developers/docs/resources/channel#embed-object-embed-field-structure

    Inheritance
    Object
    DiscordEmbedFieldData
    Implements
    IEquatable<DiscordEmbedFieldData>
    Inherited Members
    System.Object.Equals(System.Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    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 Source

    Inline

    Whether or not this field should display inline.

    Declaration
    [JsonPropertyName("inline")]
    public bool? Inline { get; set; }
    Property Value
    Type Description
    System.Nullable<Boolean>
    | Improve this Doc View Source

    Name

    Name of the field.

    Declaration
    [JsonPropertyName("name")]
    public string Name { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    Value

    Value of the field.

    Declaration
    [JsonPropertyName("value")]
    public string Value { get; set; }
    Property Value
    Type Description
    String

    Implements

    System.IEquatable<T>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX