GroupMWIDeliveryToMobileEndpointGetRequest
Bases: OCIRequest
Requests group MWI custom notifications settings. The response is either a GroupMWIDeliveryToMobileEndpointGetResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupMWIDeliveryToMobileEndpointGetRequest.
The templateActivationTable contains the list of templates defined for the group.
The column headings are "Enable", "Language", "Type".
Attributes:
use_setting_level (str):
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 GroupMWIDeliveryToMobileEndpointGetRequest
client = Client()
command = GroupMWIDeliveryToMobileEndpointGetRequest(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)