SystemSIPGetContentTypeListRequest
Bases: OCIRequest
Get the content type list for the SIP interface. The response is either SystemSIPGetContentTypeListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemSIPGetContentTypeListRequest. Returns a 2 column table with column headings: "Content Type" and "Supported Interface".
Attributes:
content_type_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemSIPGetContentTypeListRequest
client = Client()
command = SystemSIPGetContentTypeListRequest()
response = client.command(command)
print(response)