Class: Google::Apis::SlidesV1::OpaqueColor

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/slides_v1/classes.rb,
lib/google/apis/slides_v1/representations.rb,
lib/google/apis/slides_v1/representations.rb

Overview

A themeable solid color value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OpaqueColor

Returns a new instance of OpaqueColor.



1880
1881
1882
# File 'lib/google/apis/slides_v1/classes.rb', line 1880

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#rgb_colorGoogle::Apis::SlidesV1::RgbColor

An RGB color. Corresponds to the JSON property rgbColor



1873
1874
1875
# File 'lib/google/apis/slides_v1/classes.rb', line 1873

def rgb_color
  @rgb_color
end

#theme_colorString

An opaque theme color. Corresponds to the JSON property themeColor

Returns:

  • (String)


1878
1879
1880
# File 'lib/google/apis/slides_v1/classes.rb', line 1878

def theme_color
  @theme_color
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1885
1886
1887
1888
# File 'lib/google/apis/slides_v1/classes.rb', line 1885

def update!(**args)
  @rgb_color = args[:rgb_color] if args.key?(:rgb_color)
  @theme_color = args[:theme_color] if args.key?(:theme_color)
end