import * as $dara from '@darabonba/typescript'; export declare 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; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }