import * as $dara from '@darabonba/typescript'; export declare class CreateSavingsPlansInstanceResponseBodyData extends $dara.Model { /** * @remarks * The ID of the order. * * @example * 202110260001 */ orderId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateSavingsPlansInstanceResponseBody extends $dara.Model { /** * @remarks * The status code. * * @example * PARAM_ERROR */ code?: string; /** * @remarks * The data returned. */ data?: CreateSavingsPlansInstanceResponseBodyData; /** * @remarks * The error message returned. * * @example * The parameter must be specified. */ message?: string; /** * @remarks * The ID of the request. * * @example * 26dabb0c-8ca0-4aa0-8143-30499f3fe304 */ 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; }); }