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) • 613 B
text/typescript
/**
* Shell EVLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema, stringEnum } from '../schema';
/**
* Enum for GetChargeSessionRetrieveResponse200JsonStatusEnum
*/
export enum GetChargeSessionRetrieveResponse200JsonStatusEnum {
SUCCESS = 'SUCCESS',
FAILED = 'FAILED',
}
/**
* Schema for GetChargeSessionRetrieveResponse200JsonStatusEnum
*/
export const getChargeSessionRetrieveResponse200JsonStatusEnumSchema: Schema<GetChargeSessionRetrieveResponse200JsonStatusEnum> = stringEnum(
GetChargeSessionRetrieveResponse200JsonStatusEnum
);