Module Values_2.TrainingPlanExtensionOfferingSource

Details about an available extension offering for a training plan. Use the offering ID with the ExtendTrainingPlan API to extend a training plan.

Sourcetype nonrec t = {
  1. trainingPlanExtensionOfferingId : TrainingPlanExtensionOfferingId.t option;
    (*

    The unique identifier for this extension offering.

    *)
  2. availabilityZone : Values_0.String256.t option;
    (*

    The Availability Zone for this extension offering.

    *)
  3. startDate : Values_0.Timestamp.t option;
    (*

    The start date of this extension offering.

    *)
  4. endDate : Values_0.Timestamp.t option;
    (*

    The end date of this extension offering.

    *)
  5. durationHours : TrainingPlanExtensionDurationHours.t option;
    (*

    The duration of this extension offering in hours.

    *)
  6. upfrontFee : Values_0.String256.t option;
    (*

    The upfront fee for this extension offering.

    *)
  7. currencyCode : Values_1.CurrencyCode.t option;
    (*

    The currency code for the upfront fee (e.g., USD).

    *)
}
Sourceval make : ?trainingPlanExtensionOfferingId:??? -> ?availabilityZone:??? -> ?startDate:??? -> ?endDate:??? -> ?durationHours:??? -> ?upfrontFee:??? -> ?currencyCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of TrainingPlanExtensionDurationHours.t | `String of TrainingPlanExtensionOfferingId.t | `Timestamp of Values_0.Timestamp.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