Module Values.CreateVehicleErrorSource

An HTTP error resulting from creating a vehicle.

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

    The ID of the vehicle with the error.

    *)
  2. code : string option;
    (*

    An HTTP error code.

    *)
  3. message : string option;
    (*

    A description of the HTTP error.

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