import * as $dara from '@darabonba/typescript'; export declare class RefundInstanceResponseBodyData extends $dara.Model { /** * @remarks * The site of the execution host. * * @example * cn */ hostId?: string; /** * @remarks * The ID of the refund order that is returned only if the instance is unsubscribed from. * * @example * 2100000000*** */ orderId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class RefundInstanceResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. * * @example * ResourceNotExists */ code?: string; /** * @remarks * The returned data. */ data?: RefundInstanceResponseBodyData; /** * @remarks * The description of the execution result. * * @example * success */ message?: string; /** * @remarks * The ID of the request. * * @example * UUID */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: true and false. * * @example * false */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }