Module Values.PriceWithCurrencySource

Currency-specific price information.

Sourcetype nonrec t = {
  1. price : Price.t option;
    (*

    The price of a domain, in a specific currency.

    *)
  2. currency : Currency.t option;
    (*

    The currency specifier.

    *)
}
Sourceval make : ?price:??? -> ?currency:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Price.t | `String of Currency.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