Class: Google::Apis::AdsensehostV4_1::AdUnit::MobileContentAdsSettings
- Inherits:
-
Object
- Object
- Google::Apis::AdsensehostV4_1::AdUnit::MobileContentAdsSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adsensehost_v4_1/classes.rb,
generated/google/apis/adsensehost_v4_1/representations.rb,
generated/google/apis/adsensehost_v4_1/representations.rb
Overview
Settings specific to WAP mobile content ads (AFMC - deprecated).
Instance Attribute Summary collapse
-
#markup_language ⇒ String
The markup language to use for this ad unit.
-
#scripting_language ⇒ String
The scripting language to use for this ad unit.
-
#size ⇒ String
Size of this ad unit.
-
#type ⇒ String
Type of this ad unit.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MobileContentAdsSettings
constructor
A new instance of MobileContentAdsSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MobileContentAdsSettings
Returns a new instance of MobileContentAdsSettings
468 469 470 |
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 468 def initialize(**args) update!(**args) end |
Instance Attribute Details
#markup_language ⇒ String
The markup language to use for this ad unit.
Corresponds to the JSON property markupLanguage
451 452 453 |
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 451 def markup_language @markup_language end |
#scripting_language ⇒ String
The scripting language to use for this ad unit.
Corresponds to the JSON property scriptingLanguage
456 457 458 |
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 456 def scripting_language @scripting_language end |
#size ⇒ String
Size of this ad unit.
Corresponds to the JSON property size
461 462 463 |
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 461 def size @size end |
#type ⇒ String
Type of this ad unit.
Corresponds to the JSON property type
466 467 468 |
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 466 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
473 474 475 476 477 478 |
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 473 def update!(**args) @markup_language = args[:markup_language] if args.key?(:markup_language) @scripting_language = args[:scripting_language] if args.key?(:scripting_language) @size = args[:size] if args.key?(:size) @type = args[:type] if args.key?(:type) end |