queryReminders
fun queryReminders(filter: FilterObject, limit: Int, next: String? = null, sort: QuerySorter<MessageReminder> = QuerySortByField()): Call<QueryRemindersResult>
Queries the message reminders for the current user matching the provided filters.
Return
Executable async Call responsible for obtaining the message reminders.
Parameters
filter
The FilterObject to filter the reminders.
limit
The maximum number of reminders to return.
next
The pagination token for the next page of results.
sort
The sorter object to apply to the query.