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.

27 lines (23 loc) 827 B
/** * Shell EVLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { object, optional, Schema, string } from '../schema'; /** Address of the Shell Recharge Location */ export interface Address { /** Street Name and Number of the Shell Recharge Location */ streetAndNumber?: string; /** Postal Code of the Shell Recharge Location */ postalCode?: string; /** City name of the Shell Recharge Location */ city?: string; /** ISO 3166 Alpha-2 Country Code of the Shell Recharge Location */ country?: string; } export const addressSchema: Schema<Address> = object({ streetAndNumber: ['streetAndNumber', optional(string())], postalCode: ['postalCode', optional(string())], city: ['city', optional(string())], country: ['country', optional(string())], });