SystemLocationBasedCallingRestrictionsGetRequest24
Bases: OCIRequest
Gets system level the Location Based Calling Restrictions attributes. The response is either a SystemLocationBasedCallingRestrictionsGetResponse24 or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemLocationBasedCallingRestrictionsGetRequest24.
Attributes:
physical_location_indicator (str):
enforce_msc_validation (bool):
enable_office_zone_announcement (bool):
enhance_office_zone (bool):
enable_mcc_mnc_based_location (bool):
mcc_mnc_roaming_network_translation_index (Optional[str]):
default_mcc_mnc_based_location (str):
Source code in src/mercury_ocip/commands/commands.py
145258 145259 145260 145261 145262 145263 145264 145265 145266 145267 145268 145269 145270 145271 145272 145273 145274 145275 145276 145277 145278 145279 145280 145281 145282 145283 145284 145285 145286 145287 145288 145289 145290 145291 145292 145293 145294 145295 145296 145297 145298 145299 145300 145301 145302 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemLocationBasedCallingRestrictionsGetRequest24
client = Client()
command = SystemLocationBasedCallingRestrictionsGetRequest24()
response = client.command(command)
print(response)