Class: Google::Apis::SlidesV1::OpaqueColor
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SlidesV1::OpaqueColor
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/slides_v1/classes.rb,
generated/google/apis/slides_v1/representations.rb,
generated/google/apis/slides_v1/representations.rb 
Overview
A themeable solid color value.
Instance Attribute Summary collapse
- 
  
    
      #rgb_color  ⇒ Google::Apis::SlidesV1::RgbColor 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An RGB color.
 - 
  
    
      #theme_color  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An opaque theme color.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OpaqueColor 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OpaqueColor.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OpaqueColor
Returns a new instance of OpaqueColor
      1842 1843 1844  | 
    
      # File 'generated/google/apis/slides_v1/classes.rb', line 1842 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#rgb_color ⇒ Google::Apis::SlidesV1::RgbColor
An RGB color.
Corresponds to the JSON property rgbColor
      1835 1836 1837  | 
    
      # File 'generated/google/apis/slides_v1/classes.rb', line 1835 def rgb_color @rgb_color end  | 
  
#theme_color ⇒ String
An opaque theme color.
Corresponds to the JSON property themeColor
      1840 1841 1842  | 
    
      # File 'generated/google/apis/slides_v1/classes.rb', line 1840 def theme_color @theme_color end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1847 1848 1849 1850  | 
    
      # File 'generated/google/apis/slides_v1/classes.rb', line 1847 def update!(**args) @rgb_color = args[:rgb_color] if args.key?(:rgb_color) @theme_color = args[:theme_color] if args.key?(:theme_color) end  |