SystemMGCPDeviceTypeGetListRequest
Bases: OCIRequest
Request to get the list of mgcp device types in the system. See Also: SystemDeviceTypeGetAvailableListRequest14sp3. The response is either SystemMGCPDeviceTypeGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemMGCPDeviceTypeGetListRequest. Contains a table of identity/ device profile types configured in the system. The column headings are: "Device Type", "Profile", "Is Obsolete".
Attributes:
device_type_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemMGCPDeviceTypeGetListRequest
client = Client()
command = SystemMGCPDeviceTypeGetListRequest()
response = client.command(command)
print(response)