Module Values.FeesBreakdownAmountSource

The fee amount.

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

    The list of fees information.

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

    The fee amount.

    *)
  3. rate : BasicString.t option;
    (*

    Details about the rate amount.

    *)
}
Sourceval make : ?description:??? -> ?amount:??? -> ?rate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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