Class: Google::Apis::LanguageV1::XpsColorMapIntColor
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1::XpsColorMapIntColor
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v1/classes.rb,
lib/google/apis/language_v1/representations.rb,
lib/google/apis/language_v1/representations.rb
Overview
RGB color and each channel is represented by an integer.
Instance Attribute Summary collapse
-
#blue ⇒ Fixnum
The value should be in range of [0, 255].
-
#green ⇒ Fixnum
The value should be in range of [0, 255].
-
#red ⇒ Fixnum
The value should be in range of [0, 255].
Instance Method Summary collapse
-
#initialize(**args) ⇒ XpsColorMapIntColor
constructor
A new instance of XpsColorMapIntColor.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ XpsColorMapIntColor
Returns a new instance of XpsColorMapIntColor.
1610 1611 1612 |
# File 'lib/google/apis/language_v1/classes.rb', line 1610 def initialize(**args) update!(**args) end |
Instance Attribute Details
#blue ⇒ Fixnum
The value should be in range of [0, 255].
Corresponds to the JSON property blue
1598 1599 1600 |
# File 'lib/google/apis/language_v1/classes.rb', line 1598 def blue @blue end |
#green ⇒ Fixnum
The value should be in range of [0, 255].
Corresponds to the JSON property green
1603 1604 1605 |
# File 'lib/google/apis/language_v1/classes.rb', line 1603 def green @green end |
#red ⇒ Fixnum
The value should be in range of [0, 255].
Corresponds to the JSON property red
1608 1609 1610 |
# File 'lib/google/apis/language_v1/classes.rb', line 1608 def red @red end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1615 1616 1617 1618 1619 |
# File 'lib/google/apis/language_v1/classes.rb', line 1615 def update!(**args) @blue = args[:blue] if args.key?(:blue) @green = args[:green] if args.key?(:green) @red = args[:red] if args.key?(:red) end |