Module Values.QuotaSettingsSource

Quotas configured for a usage plan.

Sourcetype nonrec t = {
  1. limit : Integer.t option;
    (*

    The target maximum number of requests that can be made in a given time period.

    *)
  2. offset : Integer.t option;
    (*

    The number of requests subtracted from the given limit in the initial time period.

    *)
  3. period : QuotaPeriodType.t option;
    (*

    The time period in which the limit applies. Valid values are "DAY", "WEEK" or "MONTH".

    *)
}
Sourceval make : ?limit:??? -> ?offset:??? -> ?period:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t