from typing import List, Optional
from nisystemlink.clients.core._uplink._json_model import JsonModel
[docs]class RemoveSystemsResponse(JsonModel):
"""Model for remove systems response containing the IDs of the systems which were deleted."""
jid: Optional[str] = None
"""The job ID of the remove systems operation."""
removed_ids: Optional[List[str]] = None
"""The IDs of the systems that were successfully removed."""
failed_ids: Optional[List[str]] = None
"""The IDs of the systems that could not be removed."""