SystemAutomaticCallbackGetReleaseCauseListRequest
Bases: OCIRequest
Request the system's automatic callback attributes. The response is either a SystemAutomaticCallbackGetReleaseCauseListResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAutomaticCallbackGetReleaseCauseListRequest.
Attributes:
release_cause (Optional[List[str]]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemAutomaticCallbackGetReleaseCauseListRequest
client = Client()
command = SystemAutomaticCallbackGetReleaseCauseListRequest()
response = client.command(command)
print(response)