SystemSessionAdmissionControlGetRequest25
Bases: OCIRequest
Get the session admission control settings for the system. The response is either a SystemSessionAdmissionControlGetResponse25 or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemSessionAdmissionControlGetRequest22V3. The response contains the session admission control settings for the system.
Attributes:
count_long_connections_to_media_server (bool):
sac_handling_for_mo_h (str):
block_vm_deposit_due_to_sac_limits (bool):
sac_codec_selection_policy (str):
count_call_to_mobile_number_for_sac_subscriber (bool):
count_bw_anywhere_for_sac_subscriber (bool):
count_ro_for_sac_subscriber (bool):
exclude_bw_mobility_for_sac_subscriber (bool):
enable_holdover_of_highwater_session_counts (bool):
holdover_period_minutes (str):
time_zone_offset_minutes (str):
count_calls_redirected_to_external_destination (bool):
release_bw_anywhere_devices_only (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
148813 148814 148815 148816 148817 148818 148819 148820 148821 148822 148823 148824 148825 148826 148827 148828 148829 148830 148831 148832 148833 148834 148835 148836 148837 148838 148839 148840 148841 148842 148843 148844 148845 148846 148847 148848 148849 148850 148851 148852 148853 148854 148855 148856 148857 148858 148859 148860 148861 148862 148863 148864 148865 148866 148867 148868 148869 148870 148871 148872 148873 148874 148875 148876 148877 148878 148879 148880 148881 148882 148883 148884 148885 148886 148887 148888 148889 148890 148891 148892 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemSessionAdmissionControlGetRequest25
client = Client()
command = SystemSessionAdmissionControlGetRequest25()
response = client.command(command)
print(response)