ServiceProviderBroadWorksMobilityGetRequest22V3
Bases: OCIRequest
Get the service provider BroadWorks Mobility service settings. The response is either a ServiceProviderBroadWorksMobilityGetResponse22V3 or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
The response to a ServiceProviderBroadWorksMobilityGetRequest22V3.
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]):
Source code in src/mercury_ocip_fast/commands/commands.py
132616 132617 132618 132619 132620 132621 132622 132623 132624 132625 132626 132627 132628 132629 132630 132631 132632 132633 132634 132635 132636 132637 132638 132639 132640 132641 132642 132643 132644 132645 132646 132647 132648 132649 132650 132651 132652 132653 132654 132655 132656 132657 132658 132659 132660 132661 132662 132663 132664 132665 132666 132667 132668 132669 132670 132671 132672 132673 132674 132675 132676 132677 132678 132679 132680 132681 132682 132683 132684 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import ServiceProviderBroadWorksMobilityGetRequest22V3
client = Client()
command = ServiceProviderBroadWorksMobilityGetRequest22V3(
service_provider_id=...,
)
response = client.command(command)
print(response)