module AsposeCellsCloud # class CellValue < BaseObject attr_accessor :row_index, :column_index, :type, :value # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'row_index' => :'rowIndex', # :'column_index' => :'columnIndex', # :'type' => :'type', # :'value' => :'value' } end # attribute type def self.swagger_types { :'row_index' => :'Integer', :'column_index' => :'Integer', :'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[:'rowIndex'] self.row_index = attributes[:'rowIndex'] end if attributes[:'columnIndex'] self.column_index = attributes[:'columnIndex'] end if attributes[:'type'] self.type = attributes[:'type'] end if attributes[:'value'] self.value = attributes[:'value'] end end end end