SystemStirShakenGetRequest23V2
Bases: OCIRequest
Get system Stir Shaken service settings. The response is either SystemStirShakenGetResponse23V2 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemStirShakenGetRequest23V2.
Attributes:
signing_policy (str):
tagging_policy (str):
sign_emergency_calls (bool):
tag_emergency_calls (bool):
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_verification (bool):
verification_service_url (Optional[str]):
verification_error_handling (str):
proxy_verstat_to_cnam_subscribe (bool):
use_unknown_headers_from_cnam_notify (bool):
use_ts24229_headers (bool):
enable_signing_for_unscreened_trunk_group_originations (bool):
enable_tagging_for_unscreened_trunk_group_originations (bool):
unscreened_trunk_group_origination_attestation_level (str):
verify_gets_calls (bool):
allow_partial_ingress_tagging (bool):
include_verstat_to_mobile_network_locations (bool):
allow_verstat_in_sipuri_with_phone_correction (bool):
include_tagged_headers_to_access_side (bool):
proxy_identity_header_to_access_side (bool):
check_directory_numbers_for_attestation (bool):
match_unassigned_numbers_only (bool):
enable_tagging_for_redirected_calls (bool):
prefer_ingress_tagging (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
149115 149116 149117 149118 149119 149120 149121 149122 149123 149124 149125 149126 149127 149128 149129 149130 149131 149132 149133 149134 149135 149136 149137 149138 149139 149140 149141 149142 149143 149144 149145 149146 149147 149148 149149 149150 149151 149152 149153 149154 149155 149156 149157 149158 149159 149160 149161 149162 149163 149164 149165 149166 149167 149168 149169 149170 149171 149172 149173 149174 149175 149176 149177 149178 149179 149180 149181 149182 149183 149184 149185 149186 149187 149188 149189 149190 149191 149192 149193 149194 149195 149196 149197 149198 149199 149200 149201 149202 149203 149204 149205 149206 149207 149208 149209 149210 149211 149212 149213 149214 149215 149216 149217 149218 149219 149220 149221 149222 149223 149224 149225 149226 149227 149228 149229 149230 149231 149232 149233 149234 149235 149236 149237 149238 149239 149240 149241 149242 149243 149244 149245 149246 149247 149248 149249 149250 149251 149252 149253 149254 149255 149256 149257 149258 149259 149260 149261 149262 149263 149264 149265 149266 149267 149268 149269 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemStirShakenGetRequest23V2
client = Client()
command = SystemStirShakenGetRequest23V2()
response = client.command(command)
print(response)