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.

17 lines (13 loc) 413 B
/** * Shell EVLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { object, optional, Schema, string } from '../schema'; export interface InlineResponse202Data { /** Session Id for tracking. */ sessionId?: string; } export const inlineResponse202DataSchema: Schema<InlineResponse202Data> = object( { sessionId: ['sessionId', optional(string())] } );