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