Interface AlarmQueryFilter

interface AlarmQueryFilter {
    pageSize?: number;
    query?: string;
    severity?: string;
    source?: string | number;
    status?: string;
    type?: string;
    withSourceAssets?: string | boolean;
    withSourceDevices?: string | boolean;
    withTotalPages?: boolean;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

pageSize?: number
query?: string
severity?: string
source?: string | number
status?: string
type?: string
withSourceAssets?: string | boolean
withSourceDevices?: string | boolean
withTotalPages?: boolean