// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CreateAlertContactResponseBody extends $dara.Model { /** * @remarks * The ID of the alert contact. * * @example * 102** */ contactId?: string; /** * @remarks * The ID of the request. * * @example * E9C9DA3D-10FE-472E-9EEF-2D0A3E41**** */ requestId?: string; static names(): { [key: string]: string } { return { contactId: 'ContactId', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { contactId: 'string', requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }