UserOutgoingCallingPlanDigitPlanCallMeNowGetRequest
Bases: OCIRequest
Request the Call Me Now call permissions for digit patterns for a user. The response is either a UserOutgoingCallingPlanDigitPlanCallMeNowGetResponse or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserOutgoingCallingPlanDigitPlanCallMeNowGetRequest.
Attributes:
use_custom_settings (bool):
user_permissions (Optional[OutgoingCallingPlanDigitPatternCallMeNowPermissions]):
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 UserOutgoingCallingPlanDigitPlanCallMeNowGetRequest
client = Client()
command = UserOutgoingCallingPlanDigitPlanCallMeNowGetRequest(
user_id=...,
)
response = client.command(command)
print(response)