Module Values.ConsumableDetailsSource

Contains information about consumable benefit fulfillment, such as usage quotas or service limits.

Sourcetype nonrec t = {
  1. allocatedAmount : MonetaryValue.t option;
    (*

    The total amount of the consumable benefit that has been allocated.

    *)
  2. remainingAmount : MonetaryValue.t option;
    (*

    The remaining amount of the consumable benefit that is still available for use.

    *)
  3. utilizedAmount : MonetaryValue.t option;
    (*

    The amount of the consumable benefit that has already been used.

    *)
  4. issuanceDetails : IssuanceDetail.t option;
    (*

    Detailed information about how the consumable benefit was issued and distributed.

    *)
}
Sourceval make : ?allocatedAmount:??? -> ?remainingAmount:??? -> ?utilizedAmount:??? -> ?issuanceDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of Timestamp.t ]) list ]) 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