Search Results for

    Show / Hide Table of Contents

    Class DiscordInteractionResolvedData

    Represents a discord Resolved Data Structure API model. Docs: https://discord.com/developers/docs/interactions/receiving-and-responding#interaction-object-resolved-data-structure

    Inheritance
    Object
    DiscordInteractionResolvedData
    Implements
    IEquatable<DiscordInteractionResolvedData>
    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.Interaction
    Assembly: Color-Chan.Discord.Core.dll
    Syntax
    public class DiscordInteractionResolvedData : IEquatable<DiscordInteractionResolvedData>

    Properties

    | Improve this Doc View Source

    Channels

    The ids and partial Channel objects.

    Declaration
    [JsonPropertyName("channels")]
    public IReadOnlyDictionary<ulong, DiscordChannelData> Channels { get; set; }
    Property Value
    Type Description
    IReadOnlyDictionary<System.UInt64, DiscordChannelData>
    Remarks

    Partial Channel objects only have id, name, type and permissions fields.

    | Improve this Doc View Source

    Members

    The ids and partial Member objects.

    Declaration
    [JsonPropertyName("members")]
    public IReadOnlyDictionary<ulong, DiscordGuildMemberData> Members { get; set; }
    Property Value
    Type Description
    IReadOnlyDictionary<System.UInt64, DiscordGuildMemberData>
    Remarks

    Partial Member objects are missing user, deaf and mute fields.

    | Improve this Doc View Source

    Messages

    the ids and partial Message objects.

    Declaration
    [JsonPropertyName("messages")]
    public IReadOnlyDictionary<ulong, DiscordMessageData> Messages { get; set; }
    Property Value
    Type Description
    IReadOnlyDictionary<System.UInt64, DiscordMessageData>
    | Improve this Doc View Source

    Roles

    The ids and Role objects.

    Declaration
    [JsonPropertyName("roles")]
    public IReadOnlyDictionary<ulong, DiscordGuildRoleData> Roles { get; set; }
    Property Value
    Type Description
    IReadOnlyDictionary<System.UInt64, DiscordGuildRoleData>
    | Improve this Doc View Source

    Users

    The ids and User objects.

    Declaration
    [JsonPropertyName("users")]
    public IReadOnlyDictionary<ulong, DiscordUserData> Users { get; set; }
    Property Value
    Type Description
    IReadOnlyDictionary<System.UInt64, DiscordUserData>

    Implements

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