// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteDispatchRuleResponseBody extends $dara.Model { /** * @remarks * The ID of the request. * * @example * 16AF921B-8187-489F-9913-43C808B4**** */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: true and false. * * @example * true */ 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); } }