Source code for nisystemlink.clients.spec.models._delete_specs_request

from typing import List


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


[docs]class DeleteSpecificationsPartialSuccess(JsonModel): """The results of deleting multiple specs when one or more of the specs could not be deleted.""" deleted_spec_ids: List[str] """Global IDs of the deleted specifications.""" failed_spec_ids: List[str] """Global IDs of the specifications that could not be deleted.""" error: ApiError