import * as $dara from '@darabonba/typescript'; import { ListSandboxesOutput } from "./ListSandboxesOutput"; export declare class ListSandboxesResult extends $dara.Model { /** * @remarks * The status of the request. A value of \\"SUCCESS\\" indicates that the request was successful. If the request fails, an error code is returned, such as \\"ERR_BAD_REQUEST\\", \\"ERR_VALIDATION_FAILED\\", or \\"ERR_INTERNAL_SERVER_ERROR\\". * * @example * SUCCESS */ code?: string; /** * @remarks * Contains the list of sandboxes. */ data?: ListSandboxesOutput; /** * @remarks * The unique request ID used for issue tracking. * * @example * 55D4BE40-2811-5CFB-8482-E0E98D575B1E */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }