Class: Google::Apis::AdsensehostV4_1::AdUnit::ContentAdsSettings

Inherits:
Object
  • Object
show all
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 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.



399
400
401
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 399

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

Instance Attribute Details

#backup_optionGoogle::Apis::AdsensehostV4_1::AdUnit::ContentAdsSettings::BackupOption

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



387
388
389
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 387

def backup_option
  @backup_option
end

#sizeString

Size of this ad unit. Size values are in the form SIZE_width_height. Corresponds to the JSON property size

Returns:

  • (String)


392
393
394
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 392

def size
  @size
end

#typeString

Type of this ad unit. Possible values are TEXT, TEXT_IMAGE, IMAGE and LINK. Corresponds to the JSON property type

Returns:

  • (String)


397
398
399
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 397

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



404
405
406
407
408
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 404

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