Module Values.MaintenanceStatusSource

Placeholder documentation for MaintenanceStatus

Sourcetype nonrec t = {
  1. maintenanceDay : MaintenanceDay.t option;
    (*

    The currently selected maintenance day.

    *)
  2. maintenanceDeadline : string option;
    (*

    Maintenance is required by the displayed date and time. Date and time is in ISO.

    *)
  3. maintenanceScheduledDate : string option;
    (*

    The currently scheduled maintenance date and time. Date and time is in ISO.

    *)
  4. maintenanceStartTime : string option;
    (*

    The currently selected maintenance start time. Time is in UTC.

    *)
}
Sourceval make : ?maintenanceDay:??? -> ?maintenanceDeadline:??? -> ?maintenanceScheduledDate:??? -> ?maintenanceStartTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string ]) 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