UNPKG

ev-recharge-sdk

Version:

This API Product provides the option to manage charging at all public Shell Recharge locations. The end points provides control to start, stop and get status of the charging session.

23 lines (19 loc) 642 B
/** * Shell EVLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { ApiError } from '../core'; import { BadRequestErrMsg } from '../models/badRequestErrMsg'; /** * Creates an instance of BadRequest */ interface BadRequest { /** requestId is unique identifier value that is attached to requests and messages that allow reference to a particular transaction or event chain. */ requestId?: string; /** Status of the request */ status?: string; /** Exception details of the error */ errors?: BadRequestErrMsg[]; } export class BadRequestError extends ApiError<BadRequest> {}