Module Values.AmountBreakdownSource

Details about how the total amount was calculated and categorized.

Sourcetype nonrec t = {
  1. subTotalAmount : BasicString.t option;
    (*

    The total of a set of the breakdown.

    *)
  2. discounts : DiscountsBreakdown.t option;
    (*

    The discounted amount.

    *)
  3. taxes : TaxesBreakdown.t option;
    (*

    The tax amount.

    *)
  4. fees : FeesBreakdown.t option;
    (*

    The fee amount.

    *)
}
Sourceval make : ?subTotalAmount:??? -> ?discounts:??? -> ?taxes:??? -> ?fees:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BasicString.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of BasicString.t ]) list ] list | `String of BasicString.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