Sha256: 41596c9d239b0543b623e94be305d87048271650b750b658b97b554d9e284648
Contents?: true
Size: 1.5 KB
Versions: 10
Compression:
Stored size: 1.5 KB
Contents
module AsposeCellsCloud # class MergedCell < BaseObject attr_accessor :end_column, :end_row, :start_column, :start_row, :link # 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', # :'link' => :'link' } end # attribute type def self.swagger_types { :'end_column' => :'Integer', :'end_row' => :'Integer', :'start_column' => :'Integer', :'start_row' => :'Integer', :'link' => :'Link' } 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 if attributes[:'link'] self.link = attributes[:'link'] end end end end
Version data entries
10 entries across 10 versions & 1 rubygems