SystemMGCPDeviceTypeGetRequest
Bases: OCIRequest
Request to get a mgcp device type. See Also: SystemDeviceTypeGetRequest The response is either SystemMGCPDeviceTypeGetResponse or ErrorResponse.
Attributes:
device_type (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemMGCPDeviceTypeGetRequest.
Attributes:
is_obsolete (bool):
profile (str):
number_of_ports (UnboundedPositiveInt):
protocol_choice (List[str]):
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 SystemMGCPDeviceTypeGetRequest
client = Client()
command = SystemMGCPDeviceTypeGetRequest(
device_type=...,
)
response = client.command(command)
print(response)