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