GroupAdminGetPolicyRequest20
Bases: OCIRequest
Requests the Group administrator's policy settings. The response is either GroupAdminGetPolicyResponse20 or ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupAdminGetPolicyRequest20. Contains the policy settings for the group administrator. The following elements are only used in AS data mode: dialableCallerIDAccess verifyTranslationAndroutingAccess, value "None" is returned in XS data mode
The following elements are only used in AS data mode and not returned in XS data mode:
communicationBarringUserProfileAccess (This element is only returned for groups in an enterprise)
Attributes:
profile_access (str):
user_access (str):
admin_access (str):
department_access (str):
access_device_access (str):
enhanced_service_instance_access (str):
feature_access_code_access (str):
phone_number_extension_access (str):
calling_line_id_number_access (str):
service_access (str):
trunk_group_access (str):
session_admission_control_access (str):
office_zone_access (str):
number_activation_access (str):
dialable_caller_id_access (str):
verify_translation_and_routing_access (str):
communication_barring_user_profile_access (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
120096 120097 120098 120099 120100 120101 120102 120103 120104 120105 120106 120107 120108 120109 120110 120111 120112 120113 120114 120115 120116 120117 120118 120119 120120 120121 120122 120123 120124 120125 120126 120127 120128 120129 120130 120131 120132 120133 120134 120135 120136 120137 120138 120139 120140 120141 120142 120143 120144 120145 120146 120147 120148 120149 120150 120151 120152 120153 120154 120155 120156 120157 120158 120159 120160 120161 120162 120163 120164 120165 120166 120167 120168 120169 120170 120171 120172 120173 120174 120175 120176 120177 120178 120179 120180 120181 120182 120183 120184 120185 120186 120187 120188 120189 120190 120191 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupAdminGetPolicyRequest20
client = Client()
command = GroupAdminGetPolicyRequest20(
user_id=...,
)
response = client.command(command)
print(response)