SystemDeviceTypeGetRequest22V7
Bases: OCIRequest
Requests the information about the specified device type without regard to whether the type is SIP or MGCP. The response is either SystemDeviceTypeGetResponse22V7 or ErrorResponse. Note: The elements deviceTypeConfigurationOption and staticLineOrdering apply to SIP device types only. Therefore, only present in the response when the device type is SIP.
Attributes:
device_type (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemDeviceTypeGetRequest22V7.
The following elements are only used in AS data mode:
resellerId
Attributes:
is_obsolete (bool):
profile (str):
web_based_config_url (Optional[str]):
static_registration_capable (bool):
cpe_device_options (Optional[CPEDeviceOptionsRead22V6]):
protocol_choice (List[str]):
is_ip_address_optional (bool):
use_domain (bool):
is_mobility_manager_device (bool):
device_type_configuration_option (Optional[str]):
static_line_ordering (Optional[bool]):
reseller_id (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
143772 143773 143774 143775 143776 143777 143778 143779 143780 143781 143782 143783 143784 143785 143786 143787 143788 143789 143790 143791 143792 143793 143794 143795 143796 143797 143798 143799 143800 143801 143802 143803 143804 143805 143806 143807 143808 143809 143810 143811 143812 143813 143814 143815 143816 143817 143818 143819 143820 143821 143822 143823 143824 143825 143826 143827 143828 143829 143830 143831 143832 143833 143834 143835 143836 143837 143838 143839 143840 143841 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemDeviceTypeGetRequest22V7
client = Client()
command = SystemDeviceTypeGetRequest22V7(
device_type=...,
)
response = client.command(command)
print(response)