import * as $dara from '@darabonba/typescript'; export declare class ListEscalationPoliciesResponseBodyPageBeanEscalationPolicies extends $dara.Model { /** * @remarks * The ID of the escalation policy. * * @example * 1234 */ id?: number; /** * @remarks * The name of the escalation policy. * * @example * prod escalation policy */ name?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListEscalationPoliciesResponseBodyPageBean extends $dara.Model { /** * @remarks * The list of escalation policies. */ escalationPolicies?: ListEscalationPoliciesResponseBodyPageBeanEscalationPolicies[]; /** * @remarks * The page number of the returned page. * * @example * 1 */ page?: number; /** * @remarks * The number of entries returned per page. * * @example * 20 */ size?: number; /** * @remarks * The total number of returned entries. * * @example * 1 */ total?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListEscalationPoliciesResponseBody extends $dara.Model { /** * @remarks * The returned objects. */ pageBean?: ListEscalationPoliciesResponseBodyPageBean; /** * @remarks * The request ID. * * @example * 78901766-3806-4E96-8E47-CFEF59E4**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }