# FireCloud
#
# FireCloud API
#
# The version of the OpenAPI document: 0.1
#
# Generated by: https://openapi-generator.tech
#' @docType class
#' @title AddUpdateAttribute
#'
#' @description AddUpdateAttribute Class
#'
#' @format An \code{R6Class} generator object
#'
#' @field op character
#'
#' @field attributeName character [optional]
#'
#' @field addUpdateAttribute character [optional]
#'
#' @importFrom R6 R6Class
#' @importFrom jsonlite fromJSON toJSON
#' @export
AddUpdateAttribute <- R6::R6Class(
'AddUpdateAttribute',
public = list(
`op` = NULL,
`attributeName` = NULL,
`addUpdateAttribute` = NULL,
initialize = function(
`op`, `attributeName`=NULL, `addUpdateAttribute`=NULL, ...
) {
local.optional.var <- list(...)
if (!missing(`op`)) {
stopifnot(is.character(`op`), length(`op`) == 1)
self$`op` <- `op`
}
if (!is.null(`attributeName`)) {
stopifnot(is.character(`attributeName`), length(`attributeName`) == 1)
self$`attributeName` <- `attributeName`
}
if (!is.null(`addUpdateAttribute`)) {
stopifnot(is.character(`addUpdateAttribute`), length(`addUpdateAttribute`) == 1)
self$`addUpdateAttribute` <- `addUpdateAttribute`
}
},
toJSON = function() {
AddUpdateAttributeObject <- list()
if (!is.null(self$`op`)) {
AddUpdateAttributeObject[['op']] <-
self$`op`
}
if (!is.null(self$`attributeName`)) {
AddUpdateAttributeObject[['attributeName']] <-
self$`attributeName`
}
if (!is.null(self$`addUpdateAttribute`)) {
AddUpdateAttributeObject[['addUpdateAttribute']] <-
self$`addUpdateAttribute`
}
AddUpdateAttributeObject
},
fromJSON = function(AddUpdateAttributeJson) {
AddUpdateAttributeObject <- jsonlite::fromJSON(AddUpdateAttributeJson)
if (!is.null(AddUpdateAttributeObject$`op`)) {
self$`op` <- AddUpdateAttributeObject$`op`
}
if (!is.null(AddUpdateAttributeObject$`attributeName`)) {
self$`attributeName` <- AddUpdateAttributeObject$`attributeName`
}
if (!is.null(AddUpdateAttributeObject$`addUpdateAttribute`)) {
self$`addUpdateAttribute` <- AddUpdateAttributeObject$`addUpdateAttribute`
}
self
},
toJSONString = function() {
jsoncontent <- c(
if (!is.null(self$`op`)) {
sprintf(
'"op":
"%s"
',
self$`op`
)},
if (!is.null(self$`attributeName`)) {
sprintf(
'"attributeName":
"%s"
',
self$`attributeName`
)},
if (!is.null(self$`addUpdateAttribute`)) {
sprintf(
'"addUpdateAttribute":
"%s"
',
self$`addUpdateAttribute`
)}
)
jsoncontent <- paste(jsoncontent, collapse = ",")
paste('{', jsoncontent, '}', sep = "")
},
fromJSONString = function(AddUpdateAttributeJson) {
AddUpdateAttributeObject <- jsonlite::fromJSON(AddUpdateAttributeJson)
self$`op` <- AddUpdateAttributeObject$`op`
self$`attributeName` <- AddUpdateAttributeObject$`attributeName`
self$`addUpdateAttribute` <- AddUpdateAttributeObject$`addUpdateAttribute`
self
}
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.