#' FactorsProperty
#'
#' @export
#' @format \code{\link{R6Class}} object, super class \code{\link{StringProperty}}.
#' @field defaultValue of type String inherited from super class \code{\link{StringProperty}}.
#' @field name of type String inherited from super class \code{\link{Property}}.
#' @field description of type String inherited from super class \code{\link{Property}}.
FactorsProperty <- R6::R6Class("FactorsProperty", inherit = StringProperty, 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("FactorsProperty")
return(m)
}))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.