import * as $dara from '@darabonba/typescript'; export declare class UpgradeResourcePackageResponseBodyData extends $dara.Model { /** * @remarks * The ID of the resource plan. * * @example * OSSBAG-cn-0xl*****002 */ instanceId?: string; /** * @remarks * The ID of the order. * * @example * 73387246238746 */ orderId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class UpgradeResourcePackageResponseBody extends $dara.Model { /** * @remarks * The status code returned. * * @example * Success */ code?: string; /** * @remarks * The data returned. */ data?: UpgradeResourcePackageResponseBodyData; /** * @remarks * The message returned. * * @example * Successful! */ message?: string; /** * @remarks * The ID of the order. * * @example * 73387246238746 */ orderId?: number; /** * @remarks * The ID of the request. * * @example * 6000EE23-274B-4E07-A697-FF2E999520A4 */ requestId?: string; /** * @remarks * Indicates whether the request is successful. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }