|
|
DeleteNotification (character)
|
/** Deletes a notification from the server
@param character The id of the notification to delete */
|
|
|
INTEGER GetDeviceCount ()
|
/** Returns the count of all devices that are currently registered for push notifications with
Telerik Backend Services
@return integer The count of devices */
|
|
|
Progress.Json.ObjectModel.JsonObject GetDevices ()
|
/** Returns all devices for a user's master key per the provided
filter
@return JsonObject The notifications returned. Errors are raised otherwise */
|
|
|
Progress.Json.ObjectModel.JsonObject GetDevices (JsonObject)
|
/** Returns all devices for a user's master key per the provided
filter
@param JsonObject JSON representation of a filter
@return JsonObject The notifications returned. Errors are raised otherwise */
|
|
|
Progress.Json.ObjectModel.JsonObject GetNotifications ()
|
/** Returns all notifications for a user's master key
@return JsonObject The notifications returned. Errors are raised otherwise */
|
|
|
Progress.Json.ObjectModel.JsonObject GetNotifications (JsonObject)
|
/** Returns all notifications for a user's master key per the provided
filter
@param JsonObject JSON representation of a filter
@return JsonObject The notifications returned. Errors are raised otherwise */
|
|
|
Initialize ()
|
/* Initializer/Startup */
|
|
|
UpdateNotification (character, JsonObject)
|
/** Updates a notification on the server
@param character The id of the notification to update
@param JsonObject A new set of properties to apply to the notification.
The structure of these notification messages is at
http://docs.telerik.com/platform/backend-services/features/push-notifications/structure */
|