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

r.ApiResponse.mustache Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy