Message |
Message.enableHtml() |
Enables HTML in the pushover message
Either HTML or monospace can be enabled
(optional)
|
Message |
Message.enableMonospace() |
Enables HTML in the pushover message
Either HTML or monospace can be enabled
(optional)
|
Message |
Message.withCallback(String callback) |
Callback parameter may be supplied with a publicly-accessible URL that the
pushover servers will send a request to when the user has acknowledged your
notification.
|
Message |
Message.withDevice(String device) |
Your user's device name to send the message directly to that device,
rather than all of the user's devices
(optional)
|
Message |
Message.withExpire(int expire) |
Specifies how many seconds your notification will continue to be retried for (every retry seconds).
|
Message |
Message.withMessage(String message) |
Your message
(required)
|
Message |
Message.withPriority(Priority priority) |
Priority of the message based on the @see documentation
(optional)
|
Message |
Message.withProxy(String proxyHost,
int proxyPort) |
Uses a given proxy for the HTTP requests to Pushover
|
Message |
Message.withRetry(int retry) |
Specifies how often (in seconds) the Pushover servers will send the same notification to the user.
|
Message |
Message.withSound(Sound sound) |
The name of one of the sounds supported by device clients to override
the user's default sound choice
(optional)
|
Message |
Message.withTimestamp(int timestamp) |
A Unix timestamp of your message's date and time to display to the user,
rather than the time your message is received by our API
(optional)
|
Message |
Message.withTitle(String title) |
Your message's title, otherwise your app's name is used
(optional)
|
Message |
Message.withToken(String token) |
Your application's API token
(required)
|
Message |
Message.withTTL(int ttl) |
Adds a ttl to the Pushover message
|
Message |
Message.withUrl(String url) |
A supplementary URL to show with your message
(optional)
|
Message |
Message.withUrlTitle(String urlTitle) |
A title for your supplementary URL, otherwise just the URL is shown
(optional)
|
Message |
Message.withUser(String user) |
The user/group key (not e-mail address) of your user (or you),
viewable when logged into the @see pushover dashboard
(required)
|