Alerts

class Alerts(session: Session, production: Boolean?, verbose: Boolean?, baseUrl: String?, retryPolicy: RetryPolicy<Any>?) : Service

Functions

createClient
Link copied to clipboard
fun <T> createClient(javaClass: Class<T>, module: SimpleModule? = null): T
delete
Link copied to clipboard
fun delete(alertId: Int): DeleteAlertsResponse?
Delete single alert
fun delete(alertId: List<Int>): DeleteAlertsResponse?
Delete multiple alerts
execute
Link copied to clipboard
fun <T> execute(call: Call<T>): Response<T>
get
Link copied to clipboard
fun get(alertId: Int, htmlTags: Boolean? = null): AlertDetails?
Retrieve details for a single alert
list
Link copied to clipboard
fun list(category: Category? = null, status: AlertStatus? = null, direction: TransactionSortOrder? = null, search: String? = null, count: Int? = null): AlertsResponse?
List a user’s alerts

Properties

retryPolicy
Link copied to clipboard
val retryPolicy: RetryPolicy<Any>? = null
session
Link copied to clipboard
val session: Session

Sources

jvm source
Link copied to clipboard