import { EligibleServices } from './EligibleServices';
/** Eligible services call response */
export interface EligibleServicesResponse {
    /** Creation date of the call */
    createdAt: string;
    /** List of services where an error has been encountered */
    errors: string[];
    /** Eligible services for this vRack */
    result: EligibleServices;
    /** Status of the call */
    status: string;
}
//# sourceMappingURL=EligibleServicesResponse.d.ts.map