Class: Google::Apis::AdsenseV1_4::AdUnit::ContentAdsSettings

Inherits:
Object
  • Object
show all
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 content ads (AFC) and highend mobile content ads (AFMC - deprecated).

Defined Under Namespace

Classes: BackupOption

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ContentAdsSettings

Returns a new instance of ContentAdsSettings.



449
450
451
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 449

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#backup_optionGoogle::Apis::AdsenseV1_4::AdUnit::ContentAdsSettings::BackupOption

The backup option to be used in instances where no ad is available. Corresponds to the JSON property backupOption



437
438
439
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 437

def backup_option
  @backup_option
end

#sizeString

Size of this ad unit. Corresponds to the JSON property size

Returns:

  • (String)


442
443
444
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 442

def size
  @size
end

#typeString

Type of this ad unit. Corresponds to the JSON property type

Returns:

  • (String)


447
448
449
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 447

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



454
455
456
457
458
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 454

def update!(**args)
  @backup_option = args[:backup_option] if args.key?(:backup_option)
  @size = args[:size] if args.key?(:size)
  @type = args[:type] if args.key?(:type)
end