SystemCallProcessingPolicyProfileGetRequest21
Bases: OCIRequest
Request to get a call processing policy profile in system. The response is either a SystemCallProcessingPolicyProfileGetResponse21 or an ErrorResponse.
Attributes:
name (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to a SystemCallProcessingPolicyProfileGetRequest21.
Attributes:
description (Optional[str]):
assigned_subscriber_type (Optional[List[str]]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemCallProcessingPolicyProfileGetRequest21
client = Client()
command = SystemCallProcessingPolicyProfileGetRequest21(
name=...,
)
response = client.command(command)
print(response)