ResellerCallPoliciesGetRequest22
Bases: OCIRequest
Request the reseller level data associated with Call Policies. The response is either a ResellerCallPoliciesGetResponse22 or an ErrorResponse.
Attributes:
reseller_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ResellerCallPoliciesGetRequest22.
Attributes:
force_redirecting_user_identity_for_redirected_calls (bool):
apply_redirecting_user_identity_to_network_locations (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ResellerCallPoliciesGetRequest22
client = Client()
command = ResellerCallPoliciesGetRequest22(
reseller_id=...,
)
response = client.command(command)
print(response)