Sha256: 9722ad4a1e2b2db8ee69d98f2bc30afbe3172b672c1fd5fef2b7a31aaa6ec81b

Contents?: true

Size: 1.28 KB

Versions: 6

Compression:

Stored size: 1.28 KB

Contents

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
aspose_cells_cloud-1.0.10 lib/aspose_cells_cloud/models/cell_value.rb
aspose_cells_cloud-1.0.9 lib/aspose_cells_cloud/models/cell_value.rb
aspose_cells_cloud-1.0.8 lib/aspose_cells_cloud/models/cell_value.rb
aspose_cells_cloud-1.0.7 lib/aspose_cells_cloud/models/cell_value.rb
aspose_cells_cloud-1.0.6 lib/aspose_cells_cloud/models/cell_value.rb
aspose_cells_cloud-1.0.5 lib/aspose_cells_cloud/models/cell_value.rb