Sha256: d53777fa9cb947e07e90681c96c8b20edfe2fd9e80a4fe560ebe9f4ba754998f
Contents?: true
Size: 1.23 KB
Versions: 10
Compression:
Stored size: 1.23 KB
Contents
module AsposeCellsCloud # class AutoFitterOptions < BaseObject attr_accessor :auto_fit_merged_cells, :ignore_hidden, :only_auto # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'auto_fit_merged_cells' => :'AutoFitMergedCells', # :'ignore_hidden' => :'IgnoreHidden', # :'only_auto' => :'OnlyAuto' } end # attribute type def self.swagger_types { :'auto_fit_merged_cells' => :'BOOLEAN', :'ignore_hidden' => :'BOOLEAN', :'only_auto' => :'BOOLEAN' } 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[:'AutoFitMergedCells'] self.auto_fit_merged_cells = attributes[:'AutoFitMergedCells'] end if attributes[:'IgnoreHidden'] self.ignore_hidden = attributes[:'IgnoreHidden'] end if attributes[:'OnlyAuto'] self.only_auto = attributes[:'OnlyAuto'] end end end end
Version data entries
10 entries across 10 versions & 1 rubygems