import * as $dara from '@darabonba/typescript'; export declare class DescribeContactGroupsResponseBodyPageBeanAlertContactGroupsContacts extends $dara.Model { /** * @remarks * The ID of the alert contact. * * @example * 100117 */ armsContactId?: number; /** * @remarks * The ID of the alert contact. * * @example * 456 */ contactId?: number; /** * @remarks * The name of the alert contact. * * @example * John Doe */ contactName?: string; /** * @remarks * The email address of the alert contact. * * @example * someone@example.com */ email?: string; /** * @remarks * The mobile number of the alert contact. * * @example * 1381111**** */ phone?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeContactGroupsResponseBodyPageBeanAlertContactGroups extends $dara.Model { /** * @remarks * The ID of the alert contact group. * * @example * 83261 */ armsContactGroupId?: number; /** * @remarks * The ID of the alert contact group. * * @example * 123 */ contactGroupId?: number; /** * @remarks * The name of the alert contact group. * * @example * TestGroup */ contactGroupName?: string; /** * @remarks * The contact information. If the **IsDetail** parameter is set to `false`, no **contact** information is displayed. */ contacts?: DescribeContactGroupsResponseBodyPageBeanAlertContactGroupsContacts[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeContactGroupsResponseBodyPageBean extends $dara.Model { /** * @remarks * The name of the alert contact group. */ alertContactGroups?: DescribeContactGroupsResponseBodyPageBeanAlertContactGroups[]; /** * @remarks * The page number of the returned page. * * @example * 1 */ page?: number; /** * @remarks * The number of alert contact groups displayed on each page. * * @example * 20 */ size?: number; /** * @remarks * The total number of alert contact groups. * * @example * 1 */ total?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeContactGroupsResponseBody extends $dara.Model { /** * @remarks * The objects that were returned. */ pageBean?: DescribeContactGroupsResponseBodyPageBean; /** * @remarks * The ID of the request. * * @example * 4D6C358A-A58B-4F4B-94CE-F5AAF023**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }