| |
- builtins.object
-
- EnactmentGetStatusResponse
class EnactmentGetStatusResponse(builtins.object) |
|
EnactmentGetStatusResponse(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)
EnactmentGetStatusResponse object defines the response from the server to get status of Execution/Deployment
:param id: ID of the enactment
:type id: str
:param configuration_id: ID of the configuration which configured the enactment
:type configuration_id: str
:param status: Status of the enactment
:type status: class:`ai_api_client_sdk.models.status.Status`
:param created_at: Time when the enactment was created
:type created_at: datetime
:param modified_at: Time when the enactment was last modified
:type modified_at: datetime
:param status_details: A dict, which gives detailed information about the status of the enactment, defaults to None
:type status_details: Dict[str, Any], optional |
|
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).
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
| |