SystemBroadWorksMobilityAddIMRNListRequest
Bases: OCIRequest
Adds BroadWorks Mobility IMRN numbers to the system. It is possible to add either: a single number, a list of numbers, or a range of numbers, or any combination thereof. The response is either a SuccessResponse or ErrorResponse.
Attributes:
imrn_number (Optional[List[str]]):
number_range (Optional[List[DNRange]]):
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 SystemBroadWorksMobilityAddIMRNListRequest
client = Client()
command = SystemBroadWorksMobilityAddIMRNListRequest(
imrn_number=...,
number_range=...,
)
response = client.command(command)
print(response)