UserCallingPartyCategoryGetRequest16
Bases: OCIRequest
Request the user level data associated with Calling Party Category. The response is either a UserCallingPartyCategoryGetResponse16 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserCallingPartyCategoryGetRequest16.
Attributes:
category (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import UserCallingPartyCategoryGetRequest16
client = Client()
command = UserCallingPartyCategoryGetRequest16(
user_id=...,
)
response = client.command(command)
print(response)