SystemLegacyAutomaticCallbackGetRequest
Bases: OCIRequest
Request the system's legacy automatic callback attributes. The response is either a SystemLegacyAutomaticCallbackGetResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemLegacyAutomaticCallbackGetRequest.
Attributes:
max_monitors_per_originator (int):
max_monitors_per_terminator (int):
t2_minutes (int):
t4_seconds (int):
t5_seconds (int):
t6_minutes (int):
t7_minutes (int):
t8_seconds (int):
t_ring_seconds (int):
t10_o_minutes (int):
t10_t_minutes (int):
Source code in src/mercury_ocip_fast/commands/commands.py
145117 145118 145119 145120 145121 145122 145123 145124 145125 145126 145127 145128 145129 145130 145131 145132 145133 145134 145135 145136 145137 145138 145139 145140 145141 145142 145143 145144 145145 145146 145147 145148 145149 145150 145151 145152 145153 145154 145155 145156 145157 145158 145159 145160 145161 145162 145163 145164 145165 145166 145167 145168 145169 145170 145171 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemLegacyAutomaticCallbackGetRequest
client = Client()
command = SystemLegacyAutomaticCallbackGetRequest()
response = client.command(command)
print(response)