SystemBusyLampFieldModifyRequest
Bases: OCIRequest
Modify the system level data associated with the Busy Lamp Field Service. The response is either a SuccessResponse or an ErrorResponse.
The following elements are only used in AS data mode:
forceUseOfTCP
The following elements are only used in AS data mode and ignored in XS data mode:
enableRedundancy
redundancyTaskDelayMilliseconds
redundancyTaskIntervalMilliseconds
maxNumberOfSubscriptionsPerRedundancyTaskInterval
The following elements are only used in AS data mode and ignored in XS data mode:
ignoreUnansweredTerminatingCalls
Attributes:
display_local_user_identity_last_name_first (Optional[bool]):
force_use_of_tcp (Optional[bool]):
enable_redundancy (Optional[bool]):
redundancy_task_delay_milliseconds (Optional[int]):
redundancy_task_interval_milliseconds (Optional[int]):
max_number_of_subscriptions_per_redundancy_task_interval (Optional[int]):
ignore_unanswered_terminating_calls (Optional[bool]):
Source code in src/mercury_ocip/commands/commands.py
74823 74824 74825 74826 74827 74828 74829 74830 74831 74832 74833 74834 74835 74836 74837 74838 74839 74840 74841 74842 74843 74844 74845 74846 74847 74848 74849 74850 74851 74852 74853 74854 74855 74856 74857 74858 74859 74860 74861 74862 74863 74864 74865 74866 74867 74868 74869 74870 74871 74872 74873 74874 74875 74876 74877 74878 74879 74880 74881 74882 74883 74884 74885 74886 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemBusyLampFieldModifyRequest
client = Client()
command = SystemBusyLampFieldModifyRequest(
display_local_user_identity_last_name_first=...,
force_use_of_tcp=...,
enable_redundancy=...,
redundancy_task_delay_milliseconds=...,
redundancy_task_interval_milliseconds=...,
max_number_of_subscriptions_per_redundancy_task_interval=...,
ignore_unanswered_terminating_calls=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("SystemBusyLampFieldModifyRequest",
display_local_user_identity_last_name_first=...,
force_use_of_tcp=...,
enable_redundancy=...,
redundancy_task_delay_milliseconds=...,
redundancy_task_interval_milliseconds=...,
max_number_of_subscriptions_per_redundancy_task_interval=...,
ignore_unanswered_terminating_calls=...,
)
print(response)