R/create_attribute_value_list_all_of.R

# FireCloud
#
# FireCloud API 
#
# The version of the OpenAPI document: 0.1
# 
# Generated by: https://openapi-generator.tech

#' @docType class
#' @title CreateAttributeValueListAllOf
#'
#' @description CreateAttributeValueListAllOf Class
#'
#' @format An \code{R6Class} generator object
#'
#' @field attributeName  character [optional]
#'
#' @importFrom R6 R6Class
#' @importFrom jsonlite fromJSON toJSON
#' @export
CreateAttributeValueListAllOf <- R6::R6Class(
  'CreateAttributeValueListAllOf',
  public = list(
    `attributeName` = NULL,
    initialize = function(
        `attributeName`=NULL, ...
    ) {
      local.optional.var <- list(...)
      if (!is.null(`attributeName`)) {
        stopifnot(is.character(`attributeName`), length(`attributeName`) == 1)
        self$`attributeName` <- `attributeName`
      }
    },
    toJSON = function() {
      CreateAttributeValueListAllOfObject <- list()
      if (!is.null(self$`attributeName`)) {
        CreateAttributeValueListAllOfObject[['attributeName']] <-
          self$`attributeName`
      }

      CreateAttributeValueListAllOfObject
    },
    fromJSON = function(CreateAttributeValueListAllOfJson) {
      CreateAttributeValueListAllOfObject <- jsonlite::fromJSON(CreateAttributeValueListAllOfJson)
      if (!is.null(CreateAttributeValueListAllOfObject$`attributeName`)) {
        self$`attributeName` <- CreateAttributeValueListAllOfObject$`attributeName`
      }
      self
    },
    toJSONString = function() {
      jsoncontent <- c(
        if (!is.null(self$`attributeName`)) {
        sprintf(
        '"attributeName":
          "%s"
                ',
        self$`attributeName`
        )}
      )
      jsoncontent <- paste(jsoncontent, collapse = ",")
      paste('{', jsoncontent, '}', sep = "")
    },
    fromJSONString = function(CreateAttributeValueListAllOfJson) {
      CreateAttributeValueListAllOfObject <- jsonlite::fromJSON(CreateAttributeValueListAllOfJson)
      self$`attributeName` <- CreateAttributeValueListAllOfObject$`attributeName`
      self
    }
  )
)
vjcitn/terraClientR documentation built on Dec. 23, 2021, 4:07 p.m.