Module Values_2.TrainingPlanExtensionSource

Details about an extension to a training plan, including the offering ID, dates, status, and cost information.

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

    The unique identifier of the extension offering that was used to create this extension.

    *)
  2. extendedAt : Values_0.Timestamp.t option;
    (*

    The timestamp when the extension was created.

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

    The start date of the extension period.

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

    The end date of the extension period.

    *)
  5. status : Values_0.String256.t option;
    (*

    The current status of the extension (e.g., Pending, Active, Scheduled, Failed, Expired).

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

    The payment processing status of the extension.

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

    The Availability Zone of the extension.

    *)
  8. availabilityZoneId : Values_0.AvailabilityZoneId.t option;
    (*

    The Availability Zone ID of the extension.

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

    The duration of the extension in hours.

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

    The upfront fee for the extension.

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

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

    *)
}
Sourceval make : ?trainingPlanExtensionOfferingId:??? -> ?extendedAt:??? -> ?startDate:??? -> ?endDate:??? -> ?status:??? -> ?paymentStatus:??? -> ?availabilityZone:??? -> ?availabilityZoneId:??? -> ?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