import * as $dara from '@darabonba/typescript'; import { CodeInterpreterSessionOut } from "./CodeInterpreterSessionOut"; export declare class GetCodeInterpreterSessionResult extends $dara.Model { /** * @remarks * SUCCESS indicates success. In case of failure, the corresponding error type is returned, such as ERR_BAD_REQUEST, ERR_VALIDATION_FAILED, or ERR_INTERNAL_SERVER_ERROR. */ code?: string; /** * @remarks * Data */ data?: CodeInterpreterSessionOut; /** * @remarks * Request ID */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }