SystemPushNotificationParametersGetRequest
Bases: OCIRequest
Request to get the list of push notification system parameters. The response is either SystemPushNotificationParametersGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemPushNotificationParametersGetRequest.
Contains a list of system push notification parameters.
Attributes:
enforce_allowed_application_list (bool):
maximum_registrations_per_user (int):
maximum_registration_age_days (int):
new_call_timeout (int):
subscription_events_per_second (int):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemPushNotificationParametersGetRequest
client = Client()
command = SystemPushNotificationParametersGetRequest()
response = client.command(command)
print(response)