SystemCallingPartyCategoryGetRequest
Bases: OCIRequest
Get an existing Calling Party Category in system. The response is either a SystemCallingPartyCategoryGetResponse or an ErrorResponse.
Attributes:
category (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemCallingPartyCategoryGetRequest. Contains information of a Calling Party Category defined in system.
Attributes:
cpc_value (Optional[str]):
isup_oli_value (Optional[int]):
gtd_oli_value (Optional[str]):
user_category (bool):
pay_phone (bool):
operator (bool):
default (bool):
collect_call (bool):
web_display_key (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
142249 142250 142251 142252 142253 142254 142255 142256 142257 142258 142259 142260 142261 142262 142263 142264 142265 142266 142267 142268 142269 142270 142271 142272 142273 142274 142275 142276 142277 142278 142279 142280 142281 142282 142283 142284 142285 142286 142287 142288 142289 142290 142291 142292 142293 142294 142295 142296 142297 142298 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemCallingPartyCategoryGetRequest
client = Client()
command = SystemCallingPartyCategoryGetRequest(
category=...,
)
response = client.command(command)
print(response)