Class: Google::Apis::LanguageV2::XpsColorMapIntColor

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

Instance Method Summary collapse

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

#blueFixnum

The value should be in range of [0, 255]. Corresponds to the JSON property blue

Returns:

  • (Fixnum)


1312
1313
1314
# File 'lib/google/apis/language_v2/classes.rb', line 1312

def blue
  @blue
end

#greenFixnum

The value should be in range of [0, 255]. Corresponds to the JSON property green

Returns:

  • (Fixnum)


1317
1318
1319
# File 'lib/google/apis/language_v2/classes.rb', line 1317

def green
  @green
end

#redFixnum

The value should be in range of [0, 255]. Corresponds to the JSON property red

Returns:

  • (Fixnum)


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