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

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

The backup option to be used in instances where no ad is available.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ BackupOption

Returns a new instance of BackupOption.



467
468
469
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 467

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

Instance Attribute Details

#colorString

Color to use when type is set to COLOR. Corresponds to the JSON property color

Returns:

  • (String)


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

def color
  @color
end

#typeString

Type of the backup option. Possible values are BLANK, COLOR and URL. Corresponds to the JSON property type

Returns:

  • (String)


460
461
462
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 460

def type
  @type
end

#urlString

URL to use when type is set to URL. Corresponds to the JSON property url

Returns:

  • (String)


465
466
467
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 465

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



472
473
474
475
476
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 472

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