Class TokenQuotaClientCredentials
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
The token quota configuration
[Serializable]
public record TokenQuotaClientCredentials : IJsonOnDeserialized, IEquatable<TokenQuotaClientCredentials>
- Inheritance
-
TokenQuotaClientCredentials
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
Enforce
If enabled, the quota will be enforced and requests in excess of the quota will fail. If disabled, the quota will not be enforced, but notifications for requests exceeding the quota will be available in logs.
[JsonPropertyName("enforce")]
public bool? Enforce { get; set; }
Property Value
- bool?
PerDay
Maximum number of issued tokens per day
[JsonPropertyName("per_day")]
public int? PerDay { get; set; }
Property Value
- int?
PerHour
Maximum number of issued tokens per hour
[JsonPropertyName("per_hour")]
public int? PerHour { get; set; }
Property Value
- int?
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.