Class: Google::Apis::AdsenseV1_4::AdStyle::Colors
- Inherits:
-
Object
- Object
- Google::Apis::AdsenseV1_4::AdStyle::Colors
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adsense_v1_4/classes.rb,
generated/google/apis/adsense_v1_4/representations.rb,
generated/google/apis/adsense_v1_4/representations.rb
Overview
The colors which are included in the style. These are represented as six hexadecimal characters, similar to HTML color codes, but without the leading hash.
Instance Attribute Summary collapse
-
#background ⇒ String
The color of the ad background.
-
#border ⇒ String
The color of the ad border.
-
#text ⇒ String
The color of the ad text.
-
#title ⇒ String
The color of the ad title.
-
#url ⇒ String
The color of the ad url.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Colors
constructor
A new instance of Colors.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Colors
Returns a new instance of Colors
309 310 311 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 309 def initialize(**args) update!(**args) end |
Instance Attribute Details
#background ⇒ String
The color of the ad background.
Corresponds to the JSON property background
287 288 289 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 287 def background @background end |
#border ⇒ String
The color of the ad border.
Corresponds to the JSON property border
292 293 294 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 292 def border @border end |
#text ⇒ String
The color of the ad text.
Corresponds to the JSON property text
297 298 299 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 297 def text @text end |
#title ⇒ String
The color of the ad title.
Corresponds to the JSON property title
302 303 304 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 302 def title @title end |
#url ⇒ String
The color of the ad url.
Corresponds to the JSON property url
307 308 309 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 307 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
314 315 316 317 318 319 320 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 314 def update!(**args) @background = args[:background] if args.key?(:background) @border = args[:border] if args.key?(:border) @text = args[:text] if args.key?(:text) @title = args[:title] if args.key?(:title) @url = args[:url] if args.key?(:url) end |