GroupPolicyGetRequest22
Bases: OCIRequest
Requests the Group's policy settings. The response is either GroupPolicyGetResponse22 or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupPolicyGetRequest22. Contains the policy settings for the group.
The following elements are only used in AS data mode:
userAutoAttendantNameDialingAccess, value None is returned in XS data mode
Attributes:
calling_plan_access (str):
extension_access (str):
voice_messaging_access (str):
department_admin_user_access (str):
department_admin_trunk_group_access (str):
department_admin_phone_number_extension_access (str):
department_admin_calling_line_id_number_access (str):
user_authentication_access (str):
user_group_directory_access (str):
user_profile_access (str):
user_enhanced_call_log_access (str):
user_auto_attendant_name_dialing_access (str):
Source code in src/mercury_ocip_fast/commands/commands.py
127910 127911 127912 127913 127914 127915 127916 127917 127918 127919 127920 127921 127922 127923 127924 127925 127926 127927 127928 127929 127930 127931 127932 127933 127934 127935 127936 127937 127938 127939 127940 127941 127942 127943 127944 127945 127946 127947 127948 127949 127950 127951 127952 127953 127954 127955 127956 127957 127958 127959 127960 127961 127962 127963 127964 127965 127966 127967 127968 127969 127970 127971 127972 127973 127974 127975 127976 127977 127978 127979 127980 127981 127982 127983 127984 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupPolicyGetRequest22
client = Client()
command = GroupPolicyGetRequest22(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)