ServiceProviderAnswerConfirmationGetRequest16
Bases: OCIRequest
Get a service provider or enterprise's answer confirmation settings. The response is either a ServiceProviderAnswerConfirmationGetResponse16 or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ServiceProviderAnswerConfirmationGetRequest16.
Attributes:
announcement_message_selection (str):
confirmation_message_audio_file_description (Optional[str]):
confirmation_message_media_type (Optional[str]):
confirmation_timout_seconds (int):
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 ServiceProviderAnswerConfirmationGetRequest16
client = Client()
command = ServiceProviderAnswerConfirmationGetRequest16(
service_provider_id=...,
)
response = client.command(command)
print(response)