Search Results for

    Show / Hide Table of Contents

    Class DiscordRateLimitResponseData

    Only returned in the body of an HTTP 429 response.

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

    Properties

    | Improve this Doc View Source

    IsGlobal

    A value indicating if you are being globally rate limited or not

    Declaration
    [JsonPropertyName("global")]
    public bool IsGlobal { get; set; }
    Property Value
    Type Description
    Boolean
    | Improve this Doc View Source

    Message

    A message saying you are being rate limited.

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

    RetryAfter

    The number of seconds to wait before submitting another request.

    Declaration
    [JsonPropertyName("retry_after")]
    public float RetryAfter { get; set; }
    Property Value
    Type Description
    Single

    Implements

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