ServiceProviderVoiceMessagingGroupGetVoicePortalBrandingRequest16
Bases: OCIRequest
Get the service provider's voice portal branding settings. The response is either a ServiceProviderVoiceMessagingGroupGetVoicePortalBrandingResponse16 or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ServiceProviderVoiceMessagingGroupGetVoicePortalBrandingRequest16.
Attributes:
voice_portal_greeting_selection (str):
voice_portal_greeting_file_description (Optional[str]):
voice_portal_greeting_media_file_type (Optional[str]):
voice_messaging_greeting_selection (str):
voice_messaging_greeting_file_description (Optional[str]):
voice_messaging_greeting_media_file_type (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
136084 136085 136086 136087 136088 136089 136090 136091 136092 136093 136094 136095 136096 136097 136098 136099 136100 136101 136102 136103 136104 136105 136106 136107 136108 136109 136110 136111 136112 136113 136114 136115 136116 136117 136118 136119 136120 136121 136122 136123 136124 136125 136126 136127 136128 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderVoiceMessagingGroupGetVoicePortalBrandingRequest16
client = Client()
command = ServiceProviderVoiceMessagingGroupGetVoicePortalBrandingRequest16(
service_provider_id=...,
)
response = client.command(command)
print(response)