Module Values.FeesBreakdownSource

The details of fees.

Sourcetype nonrec t = {
  1. breakdown : FeesBreakdownAmountList.t option;
    (*

    The list of fees information.

    *)
  2. totalAmount : BasicString.t option;
    (*

    The total amount of fees.

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