Search Results for

    Show / Hide Table of Contents

    Interface IDiscordInteractionResolved

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

    Namespace: Color_Chan.Discord.Core.Common.Models.Interaction
    Assembly: Color-Chan.Discord.Core.dll
    Syntax
    public interface IDiscordInteractionResolved

    Properties

    | Improve this Doc View Source

    Channels

    The ids and partial Channel objects.

    Declaration
    IReadOnlyDictionary<ulong, IDiscordChannel> Channels { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IReadOnlyDictionary<System.UInt64, IDiscordChannel>
    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
    IReadOnlyDictionary<ulong, IDiscordGuildMember> Members { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IReadOnlyDictionary<System.UInt64, IDiscordGuildMember>
    Remarks

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

    | Improve this Doc View Source

    Messages

    the ids and partial Message objects.

    Declaration
    IReadOnlyDictionary<ulong, IDiscordMessage> Messages { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IReadOnlyDictionary<System.UInt64, IDiscordMessage>
    | Improve this Doc View Source

    Roles

    The ids and Role objects.

    Declaration
    IReadOnlyDictionary<ulong, IDiscordGuildRole> Roles { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IReadOnlyDictionary<System.UInt64, IDiscordGuildRole>
    | Improve this Doc View Source

    Users

    The ids and User objects.

    Declaration
    IReadOnlyDictionary<ulong, IDiscordUser> Users { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IReadOnlyDictionary<System.UInt64, IDiscordUser>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX