import * as $dara from '@darabonba/typescript'; export declare class ListOnCallSchedulesResponseBodyPageBeanOnCallSchedules extends $dara.Model { /** * @remarks * The description of the scheduling policy. * * @example * Test scheduling policy */ description?: string; /** * @remarks * The ID of the scheduling policy. * * @example * 1234 */ id?: number; /** * @remarks * The name of the scheduling policy. * * @example * OnCallSchedule_test */ name?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListOnCallSchedulesResponseBodyPageBean extends $dara.Model { /** * @remarks * The information about the scheduling policy. */ onCallSchedules?: ListOnCallSchedulesResponseBodyPageBeanOnCallSchedules[]; /** * @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 ListOnCallSchedulesResponseBody extends $dara.Model { /** * @remarks * The objects that were returned. */ pageBean?: ListOnCallSchedulesResponseBodyPageBean; /** * @remarks * The ID of the request. * * @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; }); }