GroupBroadWorksMobilityGetRequest22V4
Bases: OCIRequest
Get the group's BroadWorks Mobility settings. The response is either a GroupBroadWorksMobilityGetResponse22V4 or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
The response to a GroupBroadWorksMobilityGetRequest22V4.
Attributes:
use_setting_level (str):
enable_location_services (bool):
enable_msrn_lookup (bool):
enable_mobile_state_checking (bool):
deny_call_originations (bool):
deny_call_terminations (bool):
enable_announcement_suppression (bool):
enable_internal_clid_delivery (bool):
enable_internal_clid_delivery_access_locations (bool):
enable_enhanced_unreachable_state_checking (bool):
enable_network_call_barring_status_check (bool):
network_translation_index (Optional[str]):
enable_pbx_route_policy (bool):
pbx_route_identity (Optional[TrunkGroupKey]):
Source code in src/mercury_ocip/commands/commands.py
120858 120859 120860 120861 120862 120863 120864 120865 120866 120867 120868 120869 120870 120871 120872 120873 120874 120875 120876 120877 120878 120879 120880 120881 120882 120883 120884 120885 120886 120887 120888 120889 120890 120891 120892 120893 120894 120895 120896 120897 120898 120899 120900 120901 120902 120903 120904 120905 120906 120907 120908 120909 120910 120911 120912 120913 120914 120915 120916 120917 120918 120919 120920 120921 120922 120923 120924 120925 120926 120927 120928 120929 120930 120931 120932 120933 120934 120935 120936 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupBroadWorksMobilityGetRequest22V4
client = Client()
command = GroupBroadWorksMobilityGetRequest22V4(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)