// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ModifyPrepayInstanceSpecResponseBody extends $dara.Model { /** * @remarks * The ID of the order. * * @example * 1234567890 */ orderId?: string; /** * @remarks * The ID of the request. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E */ requestId?: string; static names(): { [key: string]: string } { return { orderId: 'OrderId', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { orderId: 'string', requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }