Class: Google::Apis::DocsV1::OptionalColor
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DocsV1::OptionalColor
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/docs_v1/classes.rb,
lib/google/apis/docs_v1/representations.rb,
lib/google/apis/docs_v1/representations.rb 
Overview
A color that can either be fully opaque or fully transparent.
Instance Attribute Summary collapse
- 
  
    
      #color  ⇒ Google::Apis::DocsV1::Color 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A solid color.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OptionalColor 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OptionalColor.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ OptionalColor
Returns a new instance of OptionalColor.
      3244 3245 3246  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 3244 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#color ⇒ Google::Apis::DocsV1::Color
A solid color.
Corresponds to the JSON property color
      3242 3243 3244  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 3242 def color @color end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3249 3250 3251  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 3249 def update!(**args) @color = args[:color] if args.key?(:color) end  |