Source code for nisystemlink.clients.notebook.models._create_execution_response

from typing import List

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

from ._execution import Execution


[docs]class CreatedExecution(Execution): cached_result: bool """Returns true if the execution is returned from cache"""
[docs]class CreateExecutionsResponse(JsonModel): """Model for response to a request to create an execution.""" error: ApiError | None = None """The error that occurred during the request, if any.""" executions: List[CreatedExecution] | None = None """Gets or sets the collection of authorized executions."""