ai_api_client_sdk.models.execution_get_status_response
index
/home/jenkins/agent/workspace/ndation_ai-api-client-sdk_master/ai_api_client_sdk/models/execution_get_status_response.py

 
Classes
       
ai_api_client_sdk.models.enactment_get_status_response.EnactmentGetStatusResponse(builtins.object)
ExecutionGetStatusResponse

 
class ExecutionGetStatusResponse(ai_api_client_sdk.models.enactment_get_status_response.EnactmentGetStatusResponse)
    ExecutionGetStatusResponse(id: str, configuration_id: str, status: ai_api_client_sdk.models.status.Status, created_at: datetime.datetime, modified_at: datetime.datetime, status_details: Dict[str, Any] = None)
 
The ExecutionGetStatusResponse object defines the response of the execution get status
:param id: ID of the execution
:type id: str
:param configuration_id: ID of the configuration which configured the execution
:type configuration_id: str
:param status: Status of the execution
:type status: class:`ai_api_client_sdk.models.status.Status`
:param created_at: Time when the execution was created
:type created_at: datetime
:param modified_at: Time when the execution was last modified
:type modified_at: datetime
:param status_details: A dict, which gives detailed information about the status of the execution, defaults to None
:type status_details: Dict[str, Any], optional
 
 
Method resolution order:
ExecutionGetStatusResponse
ai_api_client_sdk.models.enactment_get_status_response.EnactmentGetStatusResponse
builtins.object

Methods defined here:
__init__(self, id: str, configuration_id: str, status: ai_api_client_sdk.models.status.Status, created_at: datetime.datetime, modified_at: datetime.datetime, status_details: Dict[str, Any] = None)
Initialize self.  See help(type(self)) for accurate signature.
__str__(self)
Return str(self).

Static methods defined here:
from_dict(execution_dict: Dict[str, Any])
Returns a :class:`ai_api_client_sdk.models.execution_get_status_response.ExecutionGetStatusResponse` object,
 created from the values in the dict provided as parameter
:param execution_dict: Dict which includes the necessary values to create the object
:type execution_dict: Dict[str, Any]
:return: An object, created from the values provided
:rtype: class:`ai_api_client_sdk.models.execution_get_status_response.ExecutionGetStatusResponse`

Data descriptors inherited from ai_api_client_sdk.models.enactment_get_status_response.EnactmentGetStatusResponse:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
Data
        Any = typing.Any
Dict = typing.Dict