Search Results for

    Show / Hide Table of Contents

    Class DiscordEmbedImageData

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

    Inheritance
    Object
    DiscordEmbedImageData
    Implements
    IEquatable<DiscordEmbedImageData>
    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 DiscordEmbedImageData : IEquatable<DiscordEmbedImageData>

    Properties

    | Improve this Doc View Source

    Height

    Height of image.

    Declaration
    [JsonPropertyName("height")]
    public int? Height { get; set; }
    Property Value
    Type Description
    System.Nullable<Int32>
    | Improve this Doc View Source

    ProxyUrl

    A proxied url of the image.

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

    Url

    Source url of image (only supports http(s) and attachments).

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

    Width

    Width of image.

    Declaration
    [JsonPropertyName("width")]
    public int? Width { get; set; }
    Property Value
    Type Description
    System.Nullable<Int32>

    Implements

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