import * as $dara from '@darabonba/typescript'; export declare class GetExploreUrlResponseBody extends $dara.Model { /** * @remarks * Status code. 200 means success, other status codes are exceptions. * * @example * 200 */ code?: number; /** * @remarks * Response parameters * * @example * - */ data?: string; /** * @remarks * The prompt information of the returned result. * * @example * success */ message?: string; /** * @remarks * The request ID. * * @example * 34ED024E-9E31-434A-9E4E-D9D15C3**** */ requestId?: string; /** * @remarks * Whether the operation was successful: * - true: the operation was successful * - false: the operation failed * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }