SystemBroadWorksMobilityMobileNetworkAddRequest
Bases: OCIRequest
Add a Mobile Network. The response is either SuccessResponse or ErrorResponse.
Attributes:
name (str):
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
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemBroadWorksMobilityMobileNetworkAddRequest
client = Client()
command = SystemBroadWorksMobilityMobileNetworkAddRequest(
name=...,
scf_signaling_net_address=...,
scf_signaling_port=...,
refresh_period_seconds=...,
max_consecutive_failures=...,
max_response_wait_time_milliseconds=...,
enable_announcement_suppression=...,
service_access_code_list_name=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("SystemBroadWorksMobilityMobileNetworkAddRequest",
name=...,
scf_signaling_net_address=...,
scf_signaling_port=...,
refresh_period_seconds=...,
max_consecutive_failures=...,
max_response_wait_time_milliseconds=...,
enable_announcement_suppression=...,
service_access_code_list_name=...,
)
print(response)