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

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ OpaqueColor

Returns a new instance of OpaqueColor



1734
1735
1736
# File 'generated/google/apis/slides_v1/classes.rb', line 1734

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

Instance Attribute Details

#rgb_colorGoogle::Apis::SlidesV1::RgbColor

An RGB color. Corresponds to the JSON property rgbColor



1727
1728
1729
# File 'generated/google/apis/slides_v1/classes.rb', line 1727

def rgb_color
  @rgb_color
end

#theme_colorString

An opaque theme color. Corresponds to the JSON property themeColor

Returns:

  • (String)


1732
1733
1734
# File 'generated/google/apis/slides_v1/classes.rb', line 1732

def theme_color
  @theme_color
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1739
1740
1741
1742
# File 'generated/google/apis/slides_v1/classes.rb', line 1739

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