Source code for nisystemlink.clients.assetmanagement.models._link_files_partial_success_response

from typing import List, Optional

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


[docs]class LinkFilesPartialSuccessResponse(JsonModel): """Model for a Link Files Partial Success Response.""" succeeded: Optional[List[str]] = None """Gets or sets array of file IDs that were successfully linked to assets.""" failed: Optional[List[str]] = None """Gets or sets array of file IDs that failed to link to assets.""" error: Optional[ApiError] = None """Gets or sets error if the link file operation failed."""