Sha256: df7e7a7214260278b6eb0c7d61c30f83f934a1a2e1d140b069859e10ffad45d7

Contents?: true

Size: 1.1 KB

Versions: 4

Compression:

Stored size: 1.1 KB

Contents

module AsposeWordsCloud
  # 
  class Color < BaseObject
    attr_accessor :a, :r, :g, :b
    # attribute mapping from ruby-style variable name to JSON key
    def self.attribute_map
      {
        
        # 
        :'a' => :'A',
        
        # 
        :'r' => :'R',
        
        # 
        :'g' => :'G',
        
        # 
        :'b' => :'B'
        
      }
    end

    # attribute type
    def self.swagger_types
      {
        :'a' => :'String',
        :'r' => :'String',
        :'g' => :'String',
        :'b' => :'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[:'A']
        self.a = attributes[:'A']
      end
      
      if attributes[:'R']
        self.r = attributes[:'R']
      end
      
      if attributes[:'G']
        self.g = attributes[:'G']
      end
      
      if attributes[:'B']
        self.b = attributes[:'B']
      end
      
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
aspose_words_cloud-1.0.3 lib/aspose_words_cloud/models/color.rb
aspose_words_cloud-1.0.2 lib/aspose_words_cloud/models/color.rb
aspose_words_cloud-1.0.1 lib/aspose_words_cloud/models/color.rb
aspose_words_cloud-1.0.0 lib/aspose_words_cloud/models/color.rb