// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteContactResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 1F1E4D86-B70B-5352-A641-8CC80D13A37F */ 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); } }