Source code for nisystemlink.clients.alarm.models._delete_alarms_response
from typing import List
from nisystemlink.clients.alarm.models._alarm_instances_partial_success import (
AlarmInstancesPartialSuccess,
)
[docs]class DeleteAlarmsResponse(AlarmInstancesPartialSuccess):
"""Contains information about alarms that were deleted."""
deleted: List[str]
"""The instanceIds of the alarms that were successfully deleted."""