import * as $dara from '@darabonba/typescript'; export declare class ListAlertsRequest extends $dara.Model { /** * @remarks * The alert type. */ category?: string; /** * @remarks * The end of the time range to query. * * @example * 2024-11-22T16: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 * 20 */ pageSize?: number; /** * @remarks * The ARN of the source or program. * * This parameter is required. * * @example * acs:ims:mediaweaver:::vodSource/mySourceLocation/MySource */ resourceArn?: string; /** * @remarks * The sorting order. By default, the query results are sorted by creation time in descending order. Valid values: asc and desc. * * @example * asc */ sortBy?: string; /** * @remarks * The sorting order by modification time. Valid values: asc and desc. * * @example * asc */ sortByModifiedTime?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }