Module Values.StartServicePeriodPayloadSource

Payload for start service period handshake requests.

Sourcetype nonrec t = {
  1. programManagementAccountIdentifier : ProgramManagementAccountIdentifier.t;
    (*

    The identifier of the program management account.

    *)
  2. note : Note.t option;
    (*

    A note providing additional information about the service period.

    *)
  3. servicePeriodType : ServicePeriodType.t;
    (*

    The type of service period being started.

    *)
  4. minimumNoticeDays : MinimumNoticeDays.t option;
    (*

    The minimum number of days notice required for changes.

    *)
  5. endDate : DateTime.t option;
    (*

    The end date of the service period.

    *)
}
Sourceval context_ : string
Sourceval make : ?note:??? -> ?minimumNoticeDays:??? -> ?endDate:??? -> programManagementAccountIdentifier:ProgramManagementAccountIdentifier.t -> servicePeriodType:ServicePeriodType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ProgramManagementAccountIdentifier.t | `Timestamp of DateTime.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