#' GarbageObject
#'
#' @export
#' @format \code{\link{R6Class}} object, super class \code{\link{PersistentObject}}, sub classes \code{\link{GarbageTasks}}, \code{\link{GarbageTasks2}}.
#' @field isDeleted of type bool inherited from super class \code{\link{PersistentObject}}.
#' @field rev of type String inherited from super class \code{\link{PersistentObject}}.
#' @field id of type String inherited from super class \code{\link{IdObject}}.
GarbageObject <- R6::R6Class("GarbageObject", inherit = PersistentObject, public = list(initialize = function(json = NULL) {
super$initialize(json = json)
}, init = function() {
super$init()
}, initJson = function(json) {
super$initJson(json)
}, toTson = function() {
m = super$toTson()
m$kind = tson.scalar("GarbageObject")
return(m)
}))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.