# OpenSilex API
#
# No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
#
# OpenAPI spec version: 1.0.0-rc+2
#
# Generated by: https://github.com/swagger-api/swagger-codegen.git
#' Location Class
#'
#'
#' @importFrom R6 R6Class
#' @importFrom jsonlite fromJSON toJSON
#' @export
Location <- R6::R6Class(
'Location',
public = list(
initialize = function(){
},
toJSON = function() {
LocationObject <- list()
LocationObject
},
fromJSON = function(LocationJson) {
LocationObject <- jsonlite::fromJSON(LocationJson)
},
fromJSONObject = function(LocationObject) {
},
toJSONString = function() {
sprintf(
'{
}',
)
},
fromJSONString = function(LocationJson) {
LocationObject <- jsonlite::fromJSON(LocationJson)
}
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.