SystemBroadWorksMobilityMobileNetworkGetRequest
Bases: OCIRequest
Get a Mobile Network. The response is either SystemBroadWorksMobilityMobileNetworkGetResponse or ErrorResponse.
Attributes:
name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
The response to a SystemBroadWorksMobilityMobileNetworkGetRequest.
Attributes:
scf_signaling_net_address (Optional[str]):
scf_signaling_port (Optional[int]):
refresh_period_seconds (int):
max_consecutive_failures (int):
max_response_wait_time_milliseconds (int):
enable_announcement_suppression (bool):
service_access_code_list_name (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
137375 137376 137377 137378 137379 137380 137381 137382 137383 137384 137385 137386 137387 137388 137389 137390 137391 137392 137393 137394 137395 137396 137397 137398 137399 137400 137401 137402 137403 137404 137405 137406 137407 137408 137409 137410 137411 137412 137413 137414 137415 137416 137417 137418 137419 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemBroadWorksMobilityMobileNetworkGetRequest
client = Client()
command = SystemBroadWorksMobilityMobileNetworkGetRequest(
name=...,
)
response = client.command(command)
print(response)