Module Values.DimensionalPriceRateSource

Dimensional price rate.

Sourcetype nonrec t = {
  1. dimension : String_.t option;
    (*

    Dimension for the price rate.

    *)
  2. price : String_.t option;
    (*

    Single-dimensional rate information.

    *)
  3. description : String_.t option;
    (*

    Description of the price rate.

    *)
  4. unit : String_.t option;
    (*

    Unit associated with the price.

    *)
}
Sourceval make : ?dimension:??? -> ?price:??? -> ?description:??? -> ?unit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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