Module Values.RevokeServicePeriodHandshakeDetailSource

Details specific to revoke service period handshakes.

Sourcetype nonrec t = {
  1. note : Note.t option;
    (*

    A note explaining the reason for revoking the service period.

    *)
  2. servicePeriodType : ServicePeriodType.t option;
    (*

    The type of service period being revoked.

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

    The minimum number of days notice required for revocation.

    *)
  4. startDate : DateTime.t option;
    (*

    The start date of the service period being revoked.

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

    The end date of the service period being revoked.

    *)
}
Sourceval make : ?note:??? -> ?servicePeriodType:??? -> ?minimumNoticeDays:??? -> ?startDate:??? -> ?endDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Note.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