#' PatchRecordService
#'
#' @export
#' @format \code{\link{R6Class}} object.
#' @section Methods:
#' \describe{
#' }
#'
PatchRecordService <- R6::R6Class("PatchRecordService", inherit = HttpClientService,
public = list(initialize = function(baseRestUri, client) {
super$initialize(baseRestUri, client)
self$uri = "api/v1/pr"
}, findByChannelId = function(startKey = NULL, endKey = NULL, limit = 20, skip = 0,
descending = TRUE, useFactory = FALSE) {
return(self$findStartKeys("findByChannelId", startKey = startKey, endKey = endKey,
limit = limit, skip = skip, descending = descending, useFactory = useFactory))
}))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.