from typing import List, Optional
from nisystemlink.clients.core import ApiError
from nisystemlink.clients.core._uplink._json_model import JsonModel
from nisystemlink.clients.testmonitor.models._result import Result
from nisystemlink.clients.testmonitor.models._update_result_request import (
UpdateResultRequest,
)
[docs]class UpdateResultsPartialSuccess(JsonModel):
results: List[Result]
"""The list of results that were successfully created."""
failed: Optional[List[UpdateResultRequest]] = None
"""The list of results that were not created.
If this is `None`, then all results were successfully created.
"""
error: Optional[ApiError] = None
"""Error messages for results that were not created.
If this is `None`, then all results were successfully created.
"""