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