All Downloads are FREE. Search and download functionalities are using the official Maven repository.

r.response.mustache Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
#' Response Class
#'
#' Response Class
#' @export
Response  <- R6::R6Class(
  'Response',
  public = list(
    content = NULL,
    response = NULL,
    initialize = function(content, response){
      self$content <- content
      self$response <- response
    }
  )
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy