Module Values.ThrottleSettingsSource

The API request rate limits.

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

    The API target request burst rate limit. This allows more requests through for a period of time than the target rate limit.

    *)
  2. rateLimit : Double.t option;
    (*

    The API target request rate limit.

    *)
}
Sourceval make : ?burstLimit:??? -> ?rateLimit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `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