// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteHotwordLibraryResponseBody extends $dara.Model { /** * @remarks * The ID of the request. * * @example * ****83B7-7F87-4792-BFE9-63CD2137**** */ requestId?: string; /** * @remarks * Indicates whether the request was successful. */ success?: boolean; static names(): { [key: string]: string } { return { requestId: 'RequestId', success: 'Success', }; } static types(): { [key: string]: any } { return { requestId: 'string', success: 'boolean', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }