Module Values.RouteVehicleIncidentSource

Incidents corresponding to this leg of the route.

Sourcetype nonrec t = {
  1. description : SensitiveString.t option;
    (*

    Brief readable description of the incident.

    *)
  2. endTime : TimestampWithTimezoneOffset.t option;
    (*

    End timestamp of the incident.

    *)
  3. severity : RouteVehicleIncidentSeverity.t option;
    (*

    Severity of the incident Critical - The part of the route the incident affects is unusable. Major- Major impact on the leg duration, for example stop and go Minor- Minor impact on the leg duration, for example traffic jam Low - Low on duration, for example slightly increased traffic

    *)
  4. startTime : TimestampWithTimezoneOffset.t option;
    (*

    Start time of the incident.

    *)
  5. type_ : RouteVehicleIncidentType.t option;
    (*

    Type of the incident.

    *)
}
Sourceval make : ?description:??? -> ?endTime:??? -> ?severity:??? -> ?startTime:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SensitiveString.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