GroupVoiceXmlGetInstanceRequest23
Bases: OCIRequest
Request to get all the information of a VoiceXML instance. The response is either GroupVoiceXmlGetInstanceResponse23 or ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupVoiceXmlGetInstanceRequest23. Contains the service profile information and possibly access device information.
Attributes:
service_instance_profile (ServiceInstanceReadProfile19sp1):
network_class_of_service (Optional[str]):
access_device_endpoint (Optional[AccessDeviceEndpointWithPortNumberRead22]):
webex_meeting_callback (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupVoiceXmlGetInstanceRequest23
client = Client()
command = GroupVoiceXmlGetInstanceRequest23(
service_user_id=...,
)
response = client.command(command)
print(response)