#' UserSecretService
#'
#' @export
#' @format \code{\link{R6Class}} object.
#' @section Methods:
#' \describe{
#' }
#'
UserSecretService <- R6::R6Class("UserSecretService", inherit = HttpClientService,
public = list(initialize = function(baseRestUri, client) {
super$initialize(baseRestUri, client)
self$uri = "api/v1/userSecret"
}, findSecretByUserId = function(keys = NULL, useFactory = FALSE) {
return(self$findKeys("secret", keys = keys, useFactory = useFactory))
}))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.