import * as $dara from '@darabonba/typescript'; export declare class GetContactResponseBody extends $dara.Model { /** * @remarks * The contact ID. * * @example * 1352570 */ contactId?: number; /** * @remarks * The email address of the contact. * * @example * test@163.com */ email?: string; /** * @remarks * Indicates whether the email address is verified. * * @example * 1 */ emailStatus?: number; /** * @remarks * The ID card number of the contact. This is required for the CFCA certificate brand and not required for other brands. * * @example * 142*************** */ idCard?: string; /** * @remarks * The phone number of the contact. * * @example * 1510108**** */ mobile?: string; /** * @remarks * Indicates whether the phone number is verified. * * @example * 1 */ mobileStatus?: number; /** * @remarks * The name of the certificate contact. * * @example * zhang san */ name?: string; /** * @remarks * The request ID. * * @example * EECA10D5-BD0F-4EF1-B3EA-B4578E5C6F8E */ requestId?: string; /** * @remarks * The webhook URLs of DingTalk, WeCom, or Lark chatbots, in list format. */ webhookList?: string[]; /** * @remarks * The webhook URLs of DingTalk, WeCom, or Lark chatbots, in list format as a string. * * @example * [\\"https://open.feishu.cn/open-apis/bot/v2/hook/dc1aa9b9-47cd-4b34-91ef-73c1034208e5\\"] */ webhooks?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }