ResellerCallCenterGetRequest
Bases: OCIRequest
Request the reseller level data associated with Call Center. The response is either a ResellerCallCenterGetResponse or an ErrorResponse.
Attributes:
reseller_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ResellerCallCenterGetRequest.
Attributes:
default_from_address (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ResellerCallCenterGetRequest
client = Client()
command = ResellerCallCenterGetRequest(
reseller_id=...,
)
response = client.command(command)
print(response)