ResellerCallRecordingGetRequest
Bases: OCIRequest
Get the Call Recording attribute for a reseller. The response is either a ResellerCallRecordingGetResponse or an ErrorResponse.
Attributes:
reseller_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ResellerCallRecordingGetRequest. The response contains the reseller’s Call Recording attribute.
Attributes:
fqdn (Optional[str]):
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 ResellerCallRecordingGetRequest
client = Client()
command = ResellerCallRecordingGetRequest(
reseller_id=...,
)
response = client.command(command)
print(response)