Module Values.UpdateVehicleErrorSource

An HTTP error resulting from updating the description for a vehicle.

Sourcetype nonrec t = {
  1. vehicleName : VehicleName.t option;
    (*

    The ID of the vehicle with the error.

    *)
  2. code : Number.t option;
    (*

    The relevant HTTP error code (400+).

    *)
  3. message : string option;
    (*

    A message associated with the error.

    *)
}
Sourceval make : ?vehicleName:??? -> ?code:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Number.t | `String of VehicleName.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