Class: Google::Apis::LanguageV2::XpsColorMapIntColor
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV2::XpsColorMapIntColor
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v2/classes.rb,
lib/google/apis/language_v2/representations.rb,
lib/google/apis/language_v2/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.
1324 1325 1326 |
# File 'lib/google/apis/language_v2/classes.rb', line 1324 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
1312 1313 1314 |
# File 'lib/google/apis/language_v2/classes.rb', line 1312 def blue @blue end |
#green ⇒ Fixnum
The value should be in range of [0, 255].
Corresponds to the JSON property green
1317 1318 1319 |
# File 'lib/google/apis/language_v2/classes.rb', line 1317 def green @green end |
#red ⇒ Fixnum
The value should be in range of [0, 255].
Corresponds to the JSON property red
1322 1323 1324 |
# File 'lib/google/apis/language_v2/classes.rb', line 1322 def red @red end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1329 1330 1331 1332 1333 |
# File 'lib/google/apis/language_v2/classes.rb', line 1329 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 |