GroupDialPlanPolicyGetRequest22
Bases: OCIRequest
Request the Group level data associated with Dial Plan Policy. The response is either a GroupDialPlanPolicyGetResponse22 or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupDialPlanPolicyGetRequest22 The following elements are only used in AS data mode: overrideResolvedDeviceDigitMap The following elements are only used in AS data mode and not returned in XS data mode: deviceDigitMap
Attributes:
use_setting (str):
requires_access_code_for_public_calls (bool):
allow_e164_public_calls (bool):
prefer_e164_number_format_for_callback_services (bool):
public_digit_map (Optional[str]):
private_digit_map (Optional[str]):
override_resolved_device_digit_map (bool):
device_digit_map (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
125152 125153 125154 125155 125156 125157 125158 125159 125160 125161 125162 125163 125164 125165 125166 125167 125168 125169 125170 125171 125172 125173 125174 125175 125176 125177 125178 125179 125180 125181 125182 125183 125184 125185 125186 125187 125188 125189 125190 125191 125192 125193 125194 125195 125196 125197 125198 125199 125200 125201 125202 125203 125204 125205 125206 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupDialPlanPolicyGetRequest22
client = Client()
command = GroupDialPlanPolicyGetRequest22(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)