UserZoneCallingRestrictionsGetRequest
Bases: OCIRequest
Gets the home zone for a user The response is either a UserZoneCallingRestrictionsGetResponse or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Gets the home zone for a user Response to a UserZoneCallingRestrictionsGetRequest
Attributes:
home_zone_name (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserZoneCallingRestrictionsGetRequest
client = Client()
command = UserZoneCallingRestrictionsGetRequest(
user_id=...,
)
response = client.command(command)
print(response)