from typing import List, Optional
from nisystemlink.clients.core._api_error import ApiError
from nisystemlink.clients.core._uplink._json_model import JsonModel
from ._schedule_test_plan_request import ScheduleTestPlanRequest
from ._test_plan import TestPlan
[docs]class ScheduleTestPlansResponse(JsonModel):
"""Represents the response returned after attempting to schedule one or more test plans."""
scheduled_test_plans: Optional[List[TestPlan]] = None
"""(Optional) List of successfully scheduled test plans."""
failed_test_plans: Optional[List[ScheduleTestPlanRequest]] = None
"""(Optional) List of test plan requests that failed to schedule."""
error: Optional[ApiError] = None
"""The error that occurred when scheduling the test plans."""