Module Values.ParentSavingsPlanOfferingSource

Information about a Savings Plan offering.

Sourcetype nonrec t = {
  1. offeringId : UUID.t option;
    (*

    The ID of the offering.

    *)
  2. paymentOption : SavingsPlanPaymentOption.t option;
    (*

    The payment option.

    *)
  3. planType : SavingsPlanType.t option;
    (*

    The plan type.

    *)
  4. durationSeconds : SavingsPlansDuration.t option;
    (*

    The duration, in seconds.

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

    The currency.

    *)
  6. planDescription : SavingsPlanDescription.t option;
    (*

    The description.

    *)
}
Sourceval make : ?offeringId:??? -> ?paymentOption:??? -> ?planType:??? -> ?durationSeconds:??? -> ?currency:??? -> ?planDescription:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of SavingsPlansDuration.t | `String of UUID.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