Class: Google::Apis::DfareportingV2_8::SiteSettings

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v2_8/classes.rb,
generated/google/apis/dfareporting_v2_8/representations.rb,
generated/google/apis/dfareporting_v2_8/representations.rb

Overview

Site Settings

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) ⇒ SiteSettings

Returns a new instance of SiteSettings



10710
10711
10712
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10710

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

Instance Attribute Details

#active_view_opt_outBoolean Also known as: active_view_opt_out?

Whether active view creatives are disabled for this site. Corresponds to the JSON property activeViewOptOut

Returns:

  • (Boolean)


10657
10658
10659
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10657

def active_view_opt_out
  @active_view_opt_out
end

#ad_blocking_opt_outBoolean Also known as: ad_blocking_opt_out?

Whether this site opts out of ad blocking. When true, ad blocking is disabled for all placements under the site, regardless of the individual placement settings. When false, the campaign and placement settings take effect. Corresponds to the JSON property adBlockingOptOut

Returns:

  • (Boolean)


10665
10666
10667
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10665

def ad_blocking_opt_out
  @ad_blocking_opt_out
end

#creative_settingsGoogle::Apis::DfareportingV2_8::CreativeSettings

Creative Settings Corresponds to the JSON property creativeSettings



10671
10672
10673
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10671

def creative_settings
  @creative_settings
end

Whether new cookies are disabled for this site. Corresponds to the JSON property disableNewCookie

Returns:

  • (Boolean)


10676
10677
10678
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10676

def disable_new_cookie
  @disable_new_cookie
end

#lookback_configurationGoogle::Apis::DfareportingV2_8::LookbackConfiguration

Lookback configuration settings. Corresponds to the JSON property lookbackConfiguration



10682
10683
10684
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10682

def lookback_configuration
  @lookback_configuration
end

#tag_settingGoogle::Apis::DfareportingV2_8::TagSetting

Tag Settings Corresponds to the JSON property tagSetting



10687
10688
10689
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10687

def tag_setting
  @tag_setting
end

#video_active_view_opt_out_templateBoolean Also known as: video_active_view_opt_out_template?

Whether Verification and ActiveView for in-stream video creatives are disabled by default for new placements created under this site. This value will be used to populate the placement.videoActiveViewOptOut field, when no value is specified for the new placement. Corresponds to the JSON property videoActiveViewOptOutTemplate

Returns:

  • (Boolean)


10695
10696
10697
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10695

def video_active_view_opt_out_template
  @video_active_view_opt_out_template
end

#vpaid_adapter_choice_templateString

Default VPAID adapter setting for new placements created under this site. This value will be used to populate the placements.vpaidAdapterChoice field, when no value is specified for the new placement. Controls which VPAID format the measurement adapter will use for in-stream video creatives assigned to the placement. The publisher's specifications will typically determine this setting. For VPAID creatives, the adapter format will match the VPAID format ( HTML5 VPAID creatives use the HTML5 adapter, and Flash VPAID creatives use the Flash adapter). Corresponds to the JSON property vpaidAdapterChoiceTemplate

Returns:

  • (String)


10708
10709
10710
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10708

def vpaid_adapter_choice_template
  @vpaid_adapter_choice_template
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10715
10716
10717
10718
10719
10720
10721
10722
10723
10724
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10715

def update!(**args)
  @active_view_opt_out = args[:active_view_opt_out] if args.key?(:active_view_opt_out)
  @ad_blocking_opt_out = args[:ad_blocking_opt_out] if args.key?(:ad_blocking_opt_out)
  @creative_settings = args[:creative_settings] if args.key?(:creative_settings)
  @disable_new_cookie = args[:disable_new_cookie] if args.key?(:disable_new_cookie)
  @lookback_configuration = args[:lookback_configuration] if args.key?(:lookback_configuration)
  @tag_setting = args[:tag_setting] if args.key?(:tag_setting)
  @video_active_view_opt_out_template = args[:video_active_view_opt_out_template] if args.key?(:video_active_view_opt_out_template)
  @vpaid_adapter_choice_template = args[:vpaid_adapter_choice_template] if args.key?(:vpaid_adapter_choice_template)
end