Sha256: 75ed8bfd05f0d9da682d7a39b813a5ba21f833992b5f2f81975ab471f10fe14c
Contents?: true
Size: 1.14 KB
Versions: 10
Compression:
Stored size: 1.14 KB
Contents
module AsposeCellsCloud # class DrawingSolidFill < BaseObject attr_accessor :color, :cells_color, :transparency # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'color' => :'Color', # :'cells_color' => :'CellsColor', # :'transparency' => :'Transparency' } end # attribute type def self.swagger_types { :'color' => :'Color', :'cells_color' => :'CellsColor', :'transparency' => :'Float' } 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[:'Color'] self.color = attributes[:'Color'] end if attributes[:'CellsColor'] self.cells_color = attributes[:'CellsColor'] end if attributes[:'Transparency'] self.transparency = attributes[:'Transparency'] end end end end
Version data entries
10 entries across 10 versions & 1 rubygems