Module Values.AcquiredLimitSource

Provides information about the number of resources used.

Sourcetype nonrec t = {
  1. limitId : LimitId.t option;
    (*

    The unique identifier of the limit.

    *)
  2. count : MinOneMaxInteger.t option;
    (*

    The number of limit resources used.

    *)
}
Sourceval make : ?limitId:??? -> ?count:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MinOneMaxInteger.t | `String of LimitId.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