import * as $dara from '@darabonba/typescript'; export declare class CreateInstanceResponseBodyData extends $dara.Model { /** * @remarks * The ID of the instance for which the order was created. * * @example * OSSBAG-cn-v1hxxxxx23 */ instanceId?: string; /** * @remarks * The ID of the order that was created. * * @example * 20240xxxx21 */ orderId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateInstanceResponseBody extends $dara.Model { /** * @remarks * The status code. * * @example * Success */ code?: string; /** * @remarks * The data returned. */ data?: CreateInstanceResponseBodyData; /** * @remarks * The error message returned. * * @example * Successful! */ message?: string; /** * @remarks * The ID of the request. * * @example * C880B065-A781-4F19-B6DD-3E0E3B715C64 */ requestId?: string; /** * @remarks * Indicates whether the request was successful. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }