Search Results for

    Show / Hide Table of Contents

    Class DiscordSessionStartLimitData

    Represents a discord Session start limit Structure API model. Docs: https://discord.com/developers/docs/topics/gateway#session-start-limit-object-session-start-limit-structure

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

    Properties

    | Improve this Doc View Source

    MaxConcurrency

    The number of identify requests allowed per 5 seconds.

    Declaration
    [JsonPropertyName("max_concurrency")]
    public long MaxConcurrency { get; set; }
    Property Value
    Type Description
    Int64
    | Improve this Doc View Source

    Remaining

    The remaining number of session starts the current user is allowed.

    Declaration
    [JsonPropertyName("remaining")]
    public int Remaining { get; set; }
    Property Value
    Type Description
    Int32
    | Improve this Doc View Source

    ResetAfter

    The number of milliseconds after which the limit resets.

    Declaration
    [JsonPropertyName("reset_after")]
    public long ResetAfter { get; set; }
    Property Value
    Type Description
    Int64
    | Improve this Doc View Source

    Total

    The total number of session starts the current user is allowed.

    Declaration
    [JsonPropertyName("total")]
    public int Total { get; set; }
    Property Value
    Type Description
    Int32

    Implements

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