GroupTrunkGroupStirShakenGetRequest23V2
Bases: OCIRequest
Get Group Trunk Group Stir Shaken service settings. The response is either GroupTrunkGroupStirShakenGetResponse23V2 or ErrorResponse.
Attributes:
trunk_group_key (TrunkGroupKey):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupTrunkGroupStirShakenGetRequest23V2.
Attributes:
use_parent_level_settings (bool):
signing_policy (str):
tagging_policy (str):
signing_service_url (Optional[str]):
tag_from_or_pai (str):
verstat_tag (str):
use_os_value_for_orig_id (bool):
orig_uuid (Optional[str]):
attestation_level (str):
enable_signing_for_unscreened_trunk_group_originations (bool):
enable_tagging_for_unscreened_trunk_group_originations (bool):
unscreened_trunk_group_origination_attestation_level (str):
check_directory_numbers_for_attestation (bool):
match_unassigned_numbers_only (bool):
enable_tagging_for_redirected_calls (bool):
Source code in src/mercury_ocip/commands/commands.py
130300 130301 130302 130303 130304 130305 130306 130307 130308 130309 130310 130311 130312 130313 130314 130315 130316 130317 130318 130319 130320 130321 130322 130323 130324 130325 130326 130327 130328 130329 130330 130331 130332 130333 130334 130335 130336 130337 130338 130339 130340 130341 130342 130343 130344 130345 130346 130347 130348 130349 130350 130351 130352 130353 130354 130355 130356 130357 130358 130359 130360 130361 130362 130363 130364 130365 130366 130367 130368 130369 130370 130371 130372 130373 130374 130375 130376 130377 130378 130379 130380 130381 130382 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupTrunkGroupStirShakenGetRequest23V2
client = Client()
command = GroupTrunkGroupStirShakenGetRequest23V2(
trunk_group_key=...,
)
response = client.command(command)
print(response)