Module Values.SoftwareRevenueSource

Specifies a customer's procurement terms details. Required only for partners in eligible programs.

Sourcetype nonrec t = {
  1. deliveryModel : RevenueModel.t option;
    (*

    Specifies the customer's intended payment type agreement or procurement method to acquire the solution or service outlined in the Opportunity.

    *)
  2. value : MonetaryValue.t option;
    (*

    Specifies the payment value (amount and currency).

    *)
  3. effectiveDate : Date.t option;
    (*

    Specifies the Opportunity's customer engagement start date for the contract's effectiveness.

    *)
  4. expirationDate : Date.t option;
    (*

    Specifies the expiration date for the contract between the customer and Amazon Web Services partner. It signifies the termination date of the agreed-upon engagement period between both parties.

    *)
}
Sourceval make : ?deliveryModel:??? -> ?value:??? -> ?effectiveDate:??? -> ?expirationDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Date.t | `Structure of (string * [> `Enum of string | `String of MonetaryValueAmountString.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