ServiceProviderMaliciousCallTraceGetRequest
Bases: OCIRequest
Get the service provider's Malicious Call Trace settings. The response is either a ServiceProviderMaliciousCallTraceGetResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ServiceProviderMaliciousCallTraceGetRequest. The response contains the service provider Malicious Call Trace settings.
Attributes:
use_system_play_mct_warning_announcement (bool):
play_mct_warning_announcement (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderMaliciousCallTraceGetRequest
client = Client()
command = ServiceProviderMaliciousCallTraceGetRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)