// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class UpdateAlertContactGroupResponseBody extends $dara.Model { /** * @remarks * Indicates whether the call was successful. * * * `true`: The call was successful. * * `false`: The call failed. * * @example * true */ isSuccess?: boolean; /** * @remarks * The ID of the request. * * @example * 9319A57D-2D9E-472A-B69B-CF3CD16D**** */ requestId?: string; static names(): { [key: string]: string } { return { isSuccess: 'IsSuccess', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { isSuccess: 'boolean', requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }