Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsadmin_v1alpha/classes.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb
Overview
SKAdNetwork conversion value schema of an iOS stream.
Instance Attribute Summary collapse
-
#apply_conversion_values ⇒ Boolean
(also: #apply_conversion_values?)
If enabled, the GA SDK will set conversion values using this schema definition, and schema will be exported to any Google Ads accounts linked to this property.
-
#name ⇒ String
Output only.
-
#postback_window_one ⇒ Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow
Settings for a SKAdNetwork conversion postback window.
-
#postback_window_three ⇒ Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow
Settings for a SKAdNetwork conversion postback window.
-
#postback_window_two ⇒ Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow
Settings for a SKAdNetwork conversion postback window.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
constructor
A new instance of GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
Returns a new instance of GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema.
5031 5032 5033 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5031 def initialize(**args) update!(**args) end |
Instance Attribute Details
#apply_conversion_values ⇒ Boolean Also known as: apply_conversion_values?
If enabled, the GA SDK will set conversion values using this schema definition,
and schema will be exported to any Google Ads accounts linked to this
property. If disabled, the GA SDK will not automatically set conversion values,
and also the schema will not be exported to Ads.
Corresponds to the JSON property applyConversionValues
5005 5006 5007 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5005 def apply_conversion_values @apply_conversion_values end |
#name ⇒ String
Output only. Resource name of the schema. This will be child of ONLY an iOS
stream, and there can be at most one such child under an iOS stream. Format:
properties/property/dataStreams/dataStream/
sKAdNetworkConversionValueSchema
Corresponds to the JSON property name
5014 5015 5016 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5014 def name @name end |
#postback_window_one ⇒ Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow
Settings for a SKAdNetwork conversion postback window.
Corresponds to the JSON property postbackWindowOne
5019 5020 5021 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5019 def postback_window_one @postback_window_one end |
#postback_window_three ⇒ Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow
Settings for a SKAdNetwork conversion postback window.
Corresponds to the JSON property postbackWindowThree
5024 5025 5026 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5024 def postback_window_three @postback_window_three end |
#postback_window_two ⇒ Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow
Settings for a SKAdNetwork conversion postback window.
Corresponds to the JSON property postbackWindowTwo
5029 5030 5031 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5029 def postback_window_two @postback_window_two end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5036 5037 5038 5039 5040 5041 5042 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5036 def update!(**args) @apply_conversion_values = args[:apply_conversion_values] if args.key?(:apply_conversion_values) @name = args[:name] if args.key?(:name) @postback_window_one = args[:postback_window_one] if args.key?(:postback_window_one) @postback_window_three = args[:postback_window_three] if args.key?(:postback_window_three) @postback_window_two = args[:postback_window_two] if args.key?(:postback_window_two) end |