R/factors_property.R

#' 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)
}))
tercen/teRcenApi documentation built on Feb. 8, 2024, 5:59 p.m.