// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteServiceCredentialResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 492E130C-76D3-55D5-BE5C-C023E431369A */ 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); } }