Source code for nisystemlink.clients.testmonitor.models._delete_results_partial_success

from typing import List

from nisystemlink.clients.core import ApiError
from nisystemlink.clients.core._uplink._json_model import JsonModel


[docs]class DeleteResultsPartialSuccess(JsonModel): """The result of deleting multiple results when one or more results could not be deleted.""" ids: List[str] """The IDs of the results that were successfully deleted.""" failed: List[str] | None = None """The IDs of the results that could not be deleted.""" error: ApiError | None = None """The error that occurred when deleting the results."""