import * as $dara from '@darabonba/typescript'; export declare class CommonResult extends $dara.Model { /** * @remarks * Indicates the request status. A value of `SUCCESS` indicates success. On failure, an error code is returned, such as `ERR_BAD_REQUEST`, `ERR_VALIDATION_FAILED`, or `ERR_INTERNAL_SERVER_ERROR`. */ code?: string; /** * @remarks * The returned business data. */ data?: any; /** * @remarks * A unique request identifier for issue tracking. */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }