ServiceProviderMWIDeliveryToMobileEndpointGetRequest
Bases: OCIRequest
Request the service provider level data associated with MWI Delivery to Mobile Endpoint service. The response is either a ServiceProviderMWIDeliveryToMobileEndpointGetResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderMWIDeliveryToMobileEndpointGetRequest.
The templateActivationTable contains the list of templates defined for the service provider.
The column headings are "Enable", "Language", "Type".
Attributes:
template_activation_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ServiceProviderMWIDeliveryToMobileEndpointGetRequest
client = Client()
command = ServiceProviderMWIDeliveryToMobileEndpointGetRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)