Class: Google::Apis::BooksV1::Discoveryclusters::Cluster::BannerWithContentContainer
- Inherits:
-
Object
- Object
- Google::Apis::BooksV1::Discoveryclusters::Cluster::BannerWithContentContainer
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/books_v1/classes.rb,
generated/google/apis/books_v1/representations.rb,
generated/google/apis/books_v1/representations.rb
Instance Attribute Summary collapse
-
#fill_color_argb ⇒ String
Corresponds to the JSON property
fillColorArgb
. -
#image_url ⇒ String
Corresponds to the JSON property
imageUrl
. -
#mask_color_argb ⇒ String
Corresponds to the JSON property
maskColorArgb
. -
#more_button_text ⇒ String
Corresponds to the JSON property
moreButtonText
. -
#more_button_url ⇒ String
Corresponds to the JSON property
moreButtonUrl
. -
#text_color_argb ⇒ String
Corresponds to the JSON property
textColorArgb
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BannerWithContentContainer
constructor
A new instance of BannerWithContentContainer.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BannerWithContentContainer
Returns a new instance of BannerWithContentContainer.
1419 1420 1421 |
# File 'generated/google/apis/books_v1/classes.rb', line 1419 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fill_color_argb ⇒ String
Corresponds to the JSON property fillColorArgb
1392 1393 1394 |
# File 'generated/google/apis/books_v1/classes.rb', line 1392 def fill_color_argb @fill_color_argb end |
#image_url ⇒ String
Corresponds to the JSON property imageUrl
1397 1398 1399 |
# File 'generated/google/apis/books_v1/classes.rb', line 1397 def image_url @image_url end |
#mask_color_argb ⇒ String
Corresponds to the JSON property maskColorArgb
1402 1403 1404 |
# File 'generated/google/apis/books_v1/classes.rb', line 1402 def mask_color_argb @mask_color_argb end |
#more_button_text ⇒ String
Corresponds to the JSON property moreButtonText
1407 1408 1409 |
# File 'generated/google/apis/books_v1/classes.rb', line 1407 def @more_button_text end |
#more_button_url ⇒ String
Corresponds to the JSON property moreButtonUrl
1412 1413 1414 |
# File 'generated/google/apis/books_v1/classes.rb', line 1412 def @more_button_url end |
#text_color_argb ⇒ String
Corresponds to the JSON property textColorArgb
1417 1418 1419 |
# File 'generated/google/apis/books_v1/classes.rb', line 1417 def text_color_argb @text_color_argb end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1424 1425 1426 1427 1428 1429 1430 1431 |
# File 'generated/google/apis/books_v1/classes.rb', line 1424 def update!(**args) @fill_color_argb = args[:fill_color_argb] if args.key?(:fill_color_argb) @image_url = args[:image_url] if args.key?(:image_url) @mask_color_argb = args[:mask_color_argb] if args.key?(:mask_color_argb) @more_button_text = args[:more_button_text] if args.key?(:more_button_text) @more_button_url = args[:more_button_url] if args.key?(:more_button_url) @text_color_argb = args[:text_color_argb] if args.key?(:text_color_argb) end |