Table of Contents

Class ClientQuotaLimit

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll

Represents the client quota headers (Auth0-Client-Quota-Limit) returned as part of a response.

public sealed class ClientQuotaLimit
Inheritance
ClientQuotaLimit
Inherited Members
Extension Methods

Properties

PerDay

The per-day quota bucket, if present.

public QuotaLimit? PerDay { get; init; }

Property Value

QuotaLimit

PerHour

The per-hour quota bucket, if present.

public QuotaLimit? PerHour { get; init; }

Property Value

QuotaLimit

Methods

Parse(string?)

Parses the Auth0-Client-Quota-Limit header value into a ClientQuotaLimit. Returns null when the header is absent or empty.

public static ClientQuotaLimit? Parse(string? headerValue)

Parameters

headerValue string

Returns

ClientQuotaLimit