// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class AttachApiProductResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * BA20890E-75C7-41BC-9C8B-73276B58F550 */ requestId?: string; static names(): { [key: string]: string } { return { requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }