// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class SearchAlertContactRequest extends $dara.Model { /** * @remarks * The ID of the alert contact. * * @example * [12345] */ contactIds?: string; /** * @remarks * The name of the alert contact. * * @example * John Doe */ contactName?: string; /** * @remarks * The number of the page to return. * * @example * 1 */ currentPage?: string; /** * @remarks * The email address of the alert contact. * * @example * someone@example.com */ email?: string; /** * @remarks * The number of entries to return on each page. * * @example * 20 */ pageSize?: string; /** * @remarks * The mobile number of the alert contact. * * @example * 1381111***** */ phone?: string; /** * @remarks * The ID of the region. Set the value to `cn-hangzhou`. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string } { return { contactIds: 'ContactIds', contactName: 'ContactName', currentPage: 'CurrentPage', email: 'Email', pageSize: 'PageSize', phone: 'Phone', regionId: 'RegionId', }; } static types(): { [key: string]: any } { return { contactIds: 'string', contactName: 'string', currentPage: 'string', email: 'string', pageSize: 'string', phone: 'string', regionId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }