import * as $dara from '@darabonba/typescript'; export declare class ListAlertsResponseBodyAlerts extends $dara.Model { /** * @remarks * The alert type. */ category?: string; /** * @remarks * The error code. * * @example * ScheduleError */ code?: string; /** * @remarks * The time when the alert was received in UTC. * * @example * 2024-07-16T10:03Z */ gmtCreate?: string; /** * @remarks * The time when the alert was modified in UTC. * * @example * 2024-07-16T10:03Z */ gmtModified?: string; /** * @remarks * The error message. * * @example * xxxxx */ message?: string; /** * @remarks * The ARN of the related resource. * * @example * acs:ims:mediaweaver:::vodSource/mySourceLocation/MySource */ relatedResourceArns?: string; /** * @remarks * The ARN of the resource. * * @example * acs:ims:mediaweaver:::vodSource/mySourceLocation/MySource */ resourceArn?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListAlertsResponseBody extends $dara.Model { /** * @remarks * The alerts. */ alerts?: ListAlertsResponseBodyAlerts[]; /** * @remarks * The page number. Default value: 1. * * @example * 1 */ pageNo?: number; /** * @remarks * The number of entries per page. Default value: 10. Valid values: 1 to 100. * * @example * 10 */ pageSize?: number; /** * @remarks * **Request ID** * * @example * xxx-xxxx-xxxxx-xxxx */ requestId?: string; /** * @remarks * The total number of entries returned. * * @example * 100 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }