SystemGETSGetRequest22
Bases: OCIRequest
Get the GETS system settings. The response is either SystemGETSGetResponse22 or ErrorResponse.
Attributes:
Responses
Bases: OCIDataResponse
Response to SystemGETSGetRequest22.
Attributes:
enabled (bool):
enable_require_resource_priority (bool):
send_access_resource_priority (bool):
call_identifier_mode (str):
default_priority_avp (int):
signaling_dscp (int):
default_r_value (str):
bypass_ro_release (bool):
ignore_resource_priorities_when_gets_disabled (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
144656 144657 144658 144659 144660 144661 144662 144663 144664 144665 144666 144667 144668 144669 144670 144671 144672 144673 144674 144675 144676 144677 144678 144679 144680 144681 144682 144683 144684 144685 144686 144687 144688 144689 144690 144691 144692 144693 144694 144695 144696 144697 144698 144699 144700 144701 144702 144703 144704 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemGETSGetRequest22
client = Client()
command = SystemGETSGetRequest22()
response = client.command(command)
print(response)