Table of Contents

Class Quota

Namespace
Auth0.ManagementApi.Models
Assembly
Auth0.ManagementApi.dll
public class Quota
Inheritance
Quota
Inherited Members

Properties

Enforce

Whether to enforce the rate limit, useful for learning modes as well as disabling specific clients.

[JsonProperty("enforce")]
public bool? Enforce { get; set; }

Property Value

bool?

PerDay

Max number of issued tokens per day.

[JsonProperty("per_day")]
public int? PerDay { get; set; }

Property Value

int?

PerHour

Max number of issued tokens per hour.

[JsonProperty("per_hour")]
public int? PerHour { get; set; }

Property Value

int?