Class: Google::Apis::DocsV1::OptionalColor

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

Overview

A color that can either be fully opaque or fully transparent.

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

Returns a new instance of OptionalColor.



3084
3085
3086
# File 'generated/google/apis/docs_v1/classes.rb', line 3084

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

Instance Attribute Details

#colorGoogle::Apis::DocsV1::Color

A solid color. Corresponds to the JSON property color



3082
3083
3084
# File 'generated/google/apis/docs_v1/classes.rb', line 3082

def color
  @color
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3089
3090
3091
# File 'generated/google/apis/docs_v1/classes.rb', line 3089

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