Class: Google::Apis::DfareportingV2_1::FloodlightConfiguration

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

Overview

Contains properties of a Floodlight configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ FloodlightConfiguration

Returns a new instance of FloodlightConfiguration.



5630
5631
5632
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5630

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

Instance Attribute Details

#account_idString

Account ID of this floodlight configuration. This is a read-only field that can be left blank. Corresponds to the JSON property accountId

Returns:

  • (String)


5536
5537
5538
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5536

def 
  @account_id
end

#advertiser_idString

Advertiser ID of the parent advertiser of this floodlight configuration. Corresponds to the JSON property advertiserId

Returns:

  • (String)


5541
5542
5543
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5541

def advertiser_id
  @advertiser_id
end

#advertiser_id_dimension_valueGoogle::Apis::DfareportingV2_1::DimensionValue

Represents a DimensionValue resource. Corresponds to the JSON property advertiserIdDimensionValue



5546
5547
5548
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5546

def advertiser_id_dimension_value
  @advertiser_id_dimension_value
end

#analytics_data_sharing_enabledBoolean Also known as: analytics_data_sharing_enabled?

Whether advertiser data is shared with Google Analytics. Corresponds to the JSON property analyticsDataSharingEnabled

Returns:

  • (Boolean)


5551
5552
5553
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5551

def analytics_data_sharing_enabled
  @analytics_data_sharing_enabled
end

#exposure_to_conversion_enabledBoolean Also known as: exposure_to_conversion_enabled?

Whether the exposure-to-conversion report is enabled. This report shows detailed pathway information on up to 10 of the most recent ad exposures seen by a user before converting. Corresponds to the JSON property exposureToConversionEnabled

Returns:

  • (Boolean)


5559
5560
5561
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5559

def exposure_to_conversion_enabled
  @exposure_to_conversion_enabled
end

#first_day_of_weekString

Day that will be counted as the first day of the week in reports. This is a required field. Corresponds to the JSON property firstDayOfWeek

Returns:

  • (String)


5566
5567
5568
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5566

def first_day_of_week
  @first_day_of_week
end

#idString

ID of this floodlight configuration. This is a read-only, auto-generated field. Corresponds to the JSON property id

Returns:

  • (String)


5571
5572
5573
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5571

def id
  @id
end

#id_dimension_valueGoogle::Apis::DfareportingV2_1::DimensionValue

Represents a DimensionValue resource. Corresponds to the JSON property idDimensionValue



5576
5577
5578
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5576

def id_dimension_value
  @id_dimension_value
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#floodlightConfiguration". Corresponds to the JSON property kind

Returns:

  • (String)


5582
5583
5584
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5582

def kind
  @kind
end

#lookback_configurationGoogle::Apis::DfareportingV2_1::LookbackConfiguration

Lookback configuration settings. Corresponds to the JSON property lookbackConfiguration



5587
5588
5589
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5587

def lookback_configuration
  @lookback_configuration
end

#natural_search_conversion_attribution_optionString

Types of attribution options for natural search conversions. Corresponds to the JSON property naturalSearchConversionAttributionOption

Returns:

  • (String)


5592
5593
5594
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5592

def natural_search_conversion_attribution_option
  @natural_search_conversion_attribution_option
end

#omniture_settingsGoogle::Apis::DfareportingV2_1::OmnitureSettings

Omniture Integration Settings. Corresponds to the JSON property omnitureSettings



5597
5598
5599
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5597

def omniture_settings
  @omniture_settings
end

#ssl_requiredBoolean Also known as: ssl_required?

Whether floodlight activities owned by this configuration are required to be SSL-compliant. Corresponds to the JSON property sslRequired

Returns:

  • (Boolean)


5603
5604
5605
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5603

def ssl_required
  @ssl_required
end

#standard_variable_typesArray<String>

List of standard variables enabled for this configuration. Acceptable values are:

  • "ORD"
  • "NUM" Corresponds to the JSON property standardVariableTypes

Returns:

  • (Array<String>)


5612
5613
5614
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5612

def standard_variable_types
  @standard_variable_types
end

#subaccount_idString

Subaccount ID of this floodlight configuration. This is a read-only field that can be left blank. Corresponds to the JSON property subaccountId

Returns:

  • (String)


5618
5619
5620
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5618

def subaccount_id
  @subaccount_id
end

#tag_settingsGoogle::Apis::DfareportingV2_1::TagSettings

Dynamic and Image Tag Settings. Corresponds to the JSON property tagSettings



5623
5624
5625
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5623

def tag_settings
  @tag_settings
end

#user_defined_variable_configurationsArray<Google::Apis::DfareportingV2_1::UserDefinedVariableConfiguration>

List of user defined variables enabled for this configuration. Corresponds to the JSON property userDefinedVariableConfigurations



5628
5629
5630
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5628

def user_defined_variable_configurations
  @user_defined_variable_configurations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5635

def update!(**args)
  @account_id = args[:account_id] unless args[:account_id].nil?
  @advertiser_id = args[:advertiser_id] unless args[:advertiser_id].nil?
  @advertiser_id_dimension_value = args[:advertiser_id_dimension_value] unless args[:advertiser_id_dimension_value].nil?
  @analytics_data_sharing_enabled = args[:analytics_data_sharing_enabled] unless args[:analytics_data_sharing_enabled].nil?
  @exposure_to_conversion_enabled = args[:exposure_to_conversion_enabled] unless args[:exposure_to_conversion_enabled].nil?
  @first_day_of_week = args[:first_day_of_week] unless args[:first_day_of_week].nil?
  @id = args[:id] unless args[:id].nil?
  @id_dimension_value = args[:id_dimension_value] unless args[:id_dimension_value].nil?
  @kind = args[:kind] unless args[:kind].nil?
  @lookback_configuration = args[:lookback_configuration] unless args[:lookback_configuration].nil?
  @natural_search_conversion_attribution_option = args[:natural_search_conversion_attribution_option] unless args[:natural_search_conversion_attribution_option].nil?
  @omniture_settings = args[:omniture_settings] unless args[:omniture_settings].nil?
  @ssl_required = args[:ssl_required] unless args[:ssl_required].nil?
  @standard_variable_types = args[:standard_variable_types] unless args[:standard_variable_types].nil?
  @subaccount_id = args[:subaccount_id] unless args[:subaccount_id].nil?
  @tag_settings = args[:tag_settings] unless args[:tag_settings].nil?
  @user_defined_variable_configurations = args[:user_defined_variable_configurations] unless args[:user_defined_variable_configurations].nil?
end