UserPushNotificationGetRequest24
Bases: OCIRequest
Get the push notification settings for a user. The response is either UserPushNotificationGetResponse24 or ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserPushNotificationGetRequest24.
Attributes:
send_push_notification_for_click_to_dial (bool):
send_push_notification_for_group_paging (bool):
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 UserPushNotificationGetRequest24
client = Client()
command = UserPushNotificationGetRequest24(
user_id=...,
)
response = client.command(command)
print(response)