Module Values.CurrencyExchangeDetailsSource

The details of currency exchange.

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

    The exchange source currency.

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

    The exchange target currency.

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

    The currency exchange rate.

    *)
}
Sourceval make : ?sourceCurrencyCode:??? -> ?targetCurrencyCode:??? -> ?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