import * as $dara from '@darabonba/typescript'; export declare class ListContactResponseBodyContactList extends $dara.Model { /** * @remarks * The contact ID. * * @example * 519580 */ contactId?: number; /** * @remarks * The email address of the contact. * * @example * username@example.com */ email?: string; /** * @remarks * Indicates whether the email address is verified. * * @example * 1 */ emailStatus?: number; /** * @remarks * The mobile phone number. * * @example * 139****8888 */ mobile?: string; /** * @remarks * Indicates whether the mobile phone number is verified. * * @example * 1 */ mobileStatus?: number; /** * @remarks * The contact name. * * @example * John */ name?: string; /** * @remarks * The webhook URL. */ webhookList?: string[]; /** * @remarks * The webhook URL. * * @example * [\\"https://open.feishu.cn/open-apis/bot/v2/hook/XXX\\",\\"https://oapi.dingtalk.com/robot/send?access_token=XXX\\",\\"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=XXX\\"] */ webhooks?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListContactResponseBody extends $dara.Model { /** * @remarks * The contact list. */ contactList?: ListContactResponseBodyContactList[]; /** * @remarks * The current page number in a paged query. Default value: **1**. * * @example * 1 */ currentPage?: number; /** * @remarks * The fuzzy match keyword. * * @example * 186 */ keyword?: string; /** * @remarks * The request ID. Alibaba Cloud generates a unique identifier for each API request. You can use this ID to troubleshoot issues. * * @example * 31C66C7B-671A-4297-9187-2C4477247A74 */ requestId?: string; /** * @remarks * The number of certificates displayed per page in a paged query. Default value: **20**. * * @example * 20 */ showSize?: number; /** * @remarks * The total number of search results. * * @example * 12 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }