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.
19 lines (15 loc) • 500 B
text/typescript
/**
* Shell EVLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { object, Schema, string } from '../schema';
export interface ChargesessionStartBody {
/** Ev charge number */
evChargeNumber: string;
/** This is the Electric Vehicle EquipmentID */
evseId: string;
}
export const chargesessionStartBodySchema: Schema<ChargesessionStartBody> = object(
{ evChargeNumber: ['evChargeNumber', string()], evseId: ['evseId', string()] }
);