Source code for nisystemlink.clients.alarm.models._query_alarms_response

from typing import List

from nisystemlink.clients.core._uplink._with_paging import WithPaging

from ._alarm import Alarm


[docs]class QueryAlarmsWithFilterResponse(WithPaging): """Contains information about the alarms matched by a query.""" alarms: List[Alarm] """The list of alarms returned by the query.""" total_count: int | None = None """The total number of alarms which matched the query, if requested."""