// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class UpdateAlertContactResponseBody extends $dara.Model { /** * @remarks * Indicates whether the alert contact was updated. Valid values: * * * true: The alert contact was updated. * * false: The alert contact failed to be updated. * * @example * true */ isSuccess?: boolean; /** * @remarks * The ID of the request. * * @example * 1A474FF8-7861-4D00-81B5-5BC3DA4E**** */ 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); } }