Module Values.TermDetailsSource

Describes the usage terms of an offer.

Sourcetype nonrec t = {
  1. usageBasedPricingTerm : PricingTerm.t option;
  2. legalTerm : LegalTerm.t option;
    (*

    Describes the legal terms.

    *)
  3. supportTerm : SupportTerm.t option;
    (*

    Describes the support terms.

    *)
  4. validityTerm : ValidityTerm.t option;
    (*

    Describes the validity terms.

    *)
}
Sourceval make : ?usageBasedPricingTerm:??? -> ?legalTerm:??? -> ?supportTerm:??? -> ?validityTerm:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ]) 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