Module Values.CostSource

Defines a cost object.

Sourcetype nonrec t = {
  1. amount : Double.t option;
    (*

    The cost amount.

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

    The cost currency, for example USD.

    *)
  3. frequency : CostFrequency.t option;
    (*

    The cost frequency.

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