SystemPushNotificationAllowedApplicationGetListRequest
Bases: OCIRequest
Request to get the list of allowed push notification applications. The response is either SystemPushNotificationAllowedApplicationGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemPushNotificationAllowedApplicationGetListRequest. Contains a table with a row for each allowed push notification application with columns: "Application Id", "Description"
Attributes:
application_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemPushNotificationAllowedApplicationGetListRequest
client = Client()
command = SystemPushNotificationAllowedApplicationGetListRequest()
response = client.command(command)
print(response)