ServiceProviderVoiceMessagingGroupModifyVoicePortalBrandingRequest16
Bases: OCIRequest
Modify the service provider's voice portal branding settings. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
voice_portal_greeting_selection (Optional[str]):
voice_portal_greeting_file (Optional[LabeledMediaFileResource]):
voice_messaging_greeting_selection (Optional[str]):
voice_messaging_greeting_file (Optional[LabeledMediaFileResource]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import ServiceProviderVoiceMessagingGroupModifyVoicePortalBrandingRequest16
client = Client()
command = ServiceProviderVoiceMessagingGroupModifyVoicePortalBrandingRequest16(
service_provider_id=...,
voice_portal_greeting_selection=...,
voice_portal_greeting_file=...,
voice_messaging_greeting_selection=...,
voice_messaging_greeting_file=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("ServiceProviderVoiceMessagingGroupModifyVoicePortalBrandingRequest16",
service_provider_id=...,
voice_portal_greeting_selection=...,
voice_portal_greeting_file=...,
voice_messaging_greeting_selection=...,
voice_messaging_greeting_file=...,
)
print(response)