Sha256: bc696f308142c03091142b957606f89f825039059df10671072f222e7da5c5fe
Contents?: true
Size: 925 Bytes
Versions: 10
Compression:
Stored size: 925 Bytes
Contents
module AsposeCellsCloud # class SingleValue < BaseObject attr_accessor :value_type, :value # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'value_type' => :'ValueType', # :'value' => :'Value' } end # attribute type def self.swagger_types { :'value_type' => :'String', :'value' => :'String' } end def initialize(attributes = {}) return if !attributes.is_a?(Hash) || attributes.empty? # convert string to symbol for hash key attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo} if attributes[:'ValueType'] self.value_type = attributes[:'ValueType'] end if attributes[:'Value'] self.value = attributes[:'Value'] end end end end
Version data entries
10 entries across 10 versions & 1 rubygems