/** * Shell EVLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { ChargeError } from './chargeError'; export interface ChargeRetrieveState { /** * Describes the session state * started, stopped, start-requested, stop-requested, failed-to-start, failed-to-stop */ status?: string; error?: ChargeError; } export declare const chargeRetrieveStateSchema: Schema;