Class: Google::Apis::AdsenseV1_4::AdUnit::MobileContentAdsSettings
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AdsenseV1_4::AdUnit::MobileContentAdsSettings
 
 
- 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
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
      553 554 555  | 
    
      # File 'generated/google/apis/adsense_v1_4/classes.rb', line 553 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
      536 537 538  | 
    
      # File 'generated/google/apis/adsense_v1_4/classes.rb', line 536 def markup_language @markup_language end  | 
  
#scripting_language ⇒ String
The scripting language to use for this ad unit.
Corresponds to the JSON property scriptingLanguage
      541 542 543  | 
    
      # File 'generated/google/apis/adsense_v1_4/classes.rb', line 541 def scripting_language @scripting_language end  | 
  
#size ⇒ String
Size of this ad unit.
Corresponds to the JSON property size
      546 547 548  | 
    
      # File 'generated/google/apis/adsense_v1_4/classes.rb', line 546 def size @size end  | 
  
#type ⇒ String
Type of this ad unit.
Corresponds to the JSON property type
      551 552 553  | 
    
      # File 'generated/google/apis/adsense_v1_4/classes.rb', line 551 def type @type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      558 559 560 561 562 563  | 
    
      # File 'generated/google/apis/adsense_v1_4/classes.rb', line 558 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  |