Module Values_1.OverrideHourSource

Information about hours of operation override

Sourcetype nonrec t = {
  1. start : Values_0.OverrideTimeSlice.t option;
  2. end_ : Values_0.OverrideTimeSlice.t option;
  3. overrideName : Values_0.CommonHumanReadableName.t option;
    (*

    Unique identifier name for the override.

    *)
  4. operationalStatus : OperationalStatus.t option;
    (*

    Indicates whether the status is open or closed during the override period. This status determines how the override modifies the base hours of operation schedule.

    *)
}
Sourceval make : ?start:??? -> ?end_:??? -> ?overrideName:??? -> ?operationalStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.CommonHumanReadableName.t | `Structure of (string * [> `Integer of int ]) list ]) 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