SystemBusyLampFieldGetRequest23V2
Bases: OCIRequest
Request the system level data associated with the Busy Lamp Field service. The response is either a SystemBusyLampFieldGetResponse23V2 or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemBusyLampFieldGetRequest23V2.
The following elements are only used in AS data mode:
forceUseOfTCP
enableRedundancy, value "false" is returned in XS data mode
redundancyTaskDelayMilliseconds, value "10000" is returned in XS data mode
redundancyTaskIntervalMilliseconds, value of "1000" is returned in XS data mode
maxNumberOfSubscriptionsPerRedundancyTaskInterval, value of "50" is returned in XS data mode
ignoreUnansweredTerminatingCalls, value "false" is returned in XS data mode
Attributes:
display_local_user_identity_last_name_first (bool):
force_use_of_tcp (bool):
enable_redundancy (bool):
redundancy_task_delay_milliseconds (int):
redundancy_task_interval_milliseconds (int):
max_number_of_subscriptions_per_redundancy_task_interval (int):
ignore_unanswered_terminating_calls (bool):
Source code in src/mercury_ocip/commands/commands.py
137499 137500 137501 137502 137503 137504 137505 137506 137507 137508 137509 137510 137511 137512 137513 137514 137515 137516 137517 137518 137519 137520 137521 137522 137523 137524 137525 137526 137527 137528 137529 137530 137531 137532 137533 137534 137535 137536 137537 137538 137539 137540 137541 137542 137543 137544 137545 137546 137547 137548 137549 137550 137551 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemBusyLampFieldGetRequest23V2
client = Client()
command = SystemBusyLampFieldGetRequest23V2()
response = client.command(command)
print(response)