Sha256: dd0ec3a6249bd9c26a1502e8c258e18b2b2c90743e5c3655330fe8a5adb0f10d
Contents?: true
Size: 1.33 KB
Versions: 10
Compression:
Stored size: 1.33 KB
Contents
module AsposeCellsCloud # class CellArea < BaseObject attr_accessor :end_column, :end_row, :start_column, :start_row # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'end_column' => :'EndColumn', # :'end_row' => :'EndRow', # :'start_column' => :'StartColumn', # :'start_row' => :'StartRow' } end # attribute type def self.swagger_types { :'end_column' => :'Integer', :'end_row' => :'Integer', :'start_column' => :'Integer', :'start_row' => :'Integer' } 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[:'EndColumn'] self.end_column = attributes[:'EndColumn'] end if attributes[:'EndRow'] self.end_row = attributes[:'EndRow'] end if attributes[:'StartColumn'] self.start_column = attributes[:'StartColumn'] end if attributes[:'StartRow'] self.start_row = attributes[:'StartRow'] end end end end
Version data entries
10 entries across 10 versions & 1 rubygems