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