VehicleAPIResponse
Interface Response object returned by the Vehicle API on successful execution.
Propertiesโ
| Name | Type | Description |
|---|---|---|
*engines? | string[] | Includes the names of the recognition engines that successfully processed the request. (Removed since version 1.3.) |
data? | { vehicles: { bounds: { extendedPlateFrame: { bottomLeft: { x: ...; y: ... }; bottomRight: { x: ...; y: ... }; topLeft: { x: ...; y: ... }; topRight: { x: ...; y: ... } }; vehicleFrame: { bottomLeft: { x: ...; y: ... }; bottomRight: { x: ...; y: ... }; topLeft: { x: ...; y: ..... | The recognition results. |
nodename? | string | The name of the node this request has been processed by. This is diagnostic information to be included in error reports. |
nodetime? | number | Total processing time spent on the worker node (includes processing, image loading and latency). (Available since version 1.4.) |
recognitiontime? | number | Net processing time spent on recognizing the already loaded image. Use this number if you want to make an objective comparison between the difficulty of different images. (Available since version 1.4) |
startuptime? | number | Startup time of the node processing the request. This can be greater in case of a cold start. (Available since version 1.4.) |
version? | string | The version of the API that returned the response. Incremented each time the response structure changes. |
Source: vehicle/response.ts:11