/**
 * Shell EVLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { DataRetrieve } from './dataRetrieve';
import { GetChargeSessionRetrieveResponse200JsonStatusEnum } from './getChargeSessionRetrieveResponse200JsonStatusEnum';
export interface GetChargeSessionRetrieveResponse200Json {
    /** Mandatory UUID (according to RFC 4122 standards) for requests and responses. This will be played back in the response from the request. */
    requestId: string;
    status: GetChargeSessionRetrieveResponse200JsonStatusEnum;
    data?: DataRetrieve[];
}
export declare const getChargeSessionRetrieveResponse200JsonSchema: Schema<GetChargeSessionRetrieveResponse200Json>;
