R/inline_response20045.R

# Binance Public Spot API
#
# OpenAPI Specifications for the Binance Public Spot API  API documents:   - [https://github.com/binance/binance-spot-api-docs](https://github.com/binance/binance-spot-api-docs)   - [https://binance-docs.github.io/apidocs/spot/en](https://binance-docs.github.io/apidocs/spot/en)
#
# The version of the OpenAPI document: 1.0
# 
# Generated by: https://openapi-generator.tech

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

      InlineResponse20045Object
    },
    fromJSON = function(InlineResponse20045Json) {
      InlineResponse20045Object <- jsonlite::fromJSON(InlineResponse20045Json)
      if (!is.null(InlineResponse20045Object$`CTR`)) {
        CTRObject <- InlineResponse20045CTR$new()
        CTRObject$fromJSON(jsonlite::toJSON(InlineResponse20045Object$CTR, auto_unbox = TRUE, digits = NA))
        self$`CTR` <- CTRObject
      }
      self
    },
    toJSONString = function() {
      jsoncontent <- c(
        if (!is.null(self$`CTR`)) {
        sprintf(
        '"CTR":
        %s
        ',
        jsonlite::toJSON(self$`CTR`$toJSON(), auto_unbox=TRUE, digits = NA)
        )}
      )
      jsoncontent <- paste(jsoncontent, collapse = ",")
      paste('{', jsoncontent, '}', sep = "")
    },
    fromJSONString = function(InlineResponse20045Json) {
      InlineResponse20045Object <- jsonlite::fromJSON(InlineResponse20045Json)
      self$`CTR` <- InlineResponse20045CTR$new()$fromJSON(jsonlite::toJSON(InlineResponse20045Object$CTR, auto_unbox = TRUE, digits = NA))
      self
    }
  )
)
grahamjwhite/binanceRapi documentation built on Nov. 22, 2022, 9:37 p.m.