/**
 * Shell EVLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { DataActive } from './dataActive';
import { GetChargeSessionRetrieveResponse200JsonStatusEnum } from './getChargeSessionRetrieveResponse200JsonStatusEnum';
export interface ActiveResponse200Json {
    /** 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?: DataActive[];
}
export declare const activeResponse200JsonSchema: Schema<ActiveResponse200Json>;
