import * as $dara from '@darabonba/typescript'; export declare class ListChannelAlertsRequest extends $dara.Model { /** * @remarks * The alert type. */ category?: string; /** * @remarks * The end of the time range to query. * * @example * 2024-11-21T16:10:45Z */ gmtEnd?: string; /** * @remarks * The beginning of the time range to query. * * @example * 2024-11-21T16:10:45Z */ gmtStart?: string; /** * @remarks * The page number. Default value: 1. * * @example * 1 */ pageNo?: number; /** * @remarks * The number of entries per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The ARN of the channel. * * This parameter is required. * * @example * acs:ims:mediaweaver:::channel/myChannel */ resourceArn?: string; /** * @remarks * The sorting order by modification time. Valid values: asc and desc. * * @example * desc */ sortByModifiedTime?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }