Class: Google::Apis::SlidesV1::RgbColor

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

An RGB color.

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) ⇒ RgbColor

Returns a new instance of RgbColor



3383
3384
3385
# File 'generated/google/apis/slides_v1/classes.rb', line 3383

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

Instance Attribute Details

#blueFloat

The blue component of the color, from 0.0 to 1.0. Corresponds to the JSON property blue

Returns:

  • (Float)


3376
3377
3378
# File 'generated/google/apis/slides_v1/classes.rb', line 3376

def blue
  @blue
end

#greenFloat

The green component of the color, from 0.0 to 1.0. Corresponds to the JSON property green

Returns:

  • (Float)


3371
3372
3373
# File 'generated/google/apis/slides_v1/classes.rb', line 3371

def green
  @green
end

#redFloat

The red component of the color, from 0.0 to 1.0. Corresponds to the JSON property red

Returns:

  • (Float)


3381
3382
3383
# File 'generated/google/apis/slides_v1/classes.rb', line 3381

def red
  @red
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3388
3389
3390
3391
3392
# File 'generated/google/apis/slides_v1/classes.rb', line 3388

def update!(**args)
  @green = args[:green] if args.key?(:green)
  @blue = args[:blue] if args.key?(:blue)
  @red = args[:red] if args.key?(:red)
end