import * as $dara from '@darabonba/typescript'; export declare class ListChannelAlertsResponseBodyProgramAlerts extends $dara.Model { /** * @remarks * The ARN of the program. * * @example * acs:ims:mediaweaver:::program/myChannel/MyProgram */ arn?: string; /** * @remarks * The alert type. */ category?: string; /** * @remarks * The number of alerts. * * @example * 4 */ count?: number; /** * @remarks * The time when the alert was last modified in UTC. * * @example * 2024-07-16T10:03Z */ gmtModified?: string; /** * @remarks * The name of the program. * * @example * program_name */ programName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListChannelAlertsResponseBody extends $dara.Model { /** * @remarks * The page number. Default value: 1. * * @example * 1 */ pageNo?: number; /** * @remarks * The number of entries per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The alerts. */ programAlerts?: ListChannelAlertsResponseBodyProgramAlerts[]; /** * @remarks * **Request ID** * * @example * xxx-xxxx-xxxxx-xxxx */ requestId?: string; /** * @remarks * The total number of alerts returned. * * @example * 4 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }