Class: Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesCustomerSkAdNetworkConversionValueSchemaSkAdNetworkConversionValueSchemaEvent
- Inherits:
-
Object
- Object
- Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesCustomerSkAdNetworkConversionValueSchemaSkAdNetworkConversionValueSchemaEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/searchads360_v23/classes.rb,
lib/google/apis/searchads360_v23/representations.rb,
lib/google/apis/searchads360_v23/representations.rb
Overview
Defines a Google conversion event that the conversion value is mapped to.
Instance Attribute Summary collapse
-
#currency_code ⇒ String
Output only.
-
#event_counter ⇒ Fixnum
Output only.
-
#event_occurrence_range ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesCustomerSkAdNetworkConversionValueSchemaSkAdNetworkConversionValueSchemaEventEventOccurrenceRange
Defines a range for event counter values.
-
#event_revenue_range ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesCustomerSkAdNetworkConversionValueSchemaSkAdNetworkConversionValueSchemaEventRevenueRange
Defines a range for revenue values.
-
#event_revenue_value ⇒ Float
Output only.
-
#mapped_event_name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAdsSearchads360V23ResourcesCustomerSkAdNetworkConversionValueSchemaSkAdNetworkConversionValueSchemaEvent
constructor
A new instance of GoogleAdsSearchads360V23ResourcesCustomerSkAdNetworkConversionValueSchemaSkAdNetworkConversionValueSchemaEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAdsSearchads360V23ResourcesCustomerSkAdNetworkConversionValueSchemaSkAdNetworkConversionValueSchemaEvent
Returns a new instance of GoogleAdsSearchads360V23ResourcesCustomerSkAdNetworkConversionValueSchemaSkAdNetworkConversionValueSchemaEvent.
16919 16920 16921 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16919 def initialize(**args) update!(**args) end |
Instance Attribute Details
#currency_code ⇒ String
Output only. The reported currency for the event_revenue. ISO 4217 three-
letter currency code, for example, "USD"
Corresponds to the JSON property currencyCode
16892 16893 16894 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16892 def currency_code @currency_code end |
#event_counter ⇒ Fixnum
Output only. For specific event counter values.
Corresponds to the JSON property eventCounter
16897 16898 16899 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16897 def event_counter @event_counter end |
#event_occurrence_range ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesCustomerSkAdNetworkConversionValueSchemaSkAdNetworkConversionValueSchemaEventEventOccurrenceRange
Defines a range for event counter values.
Corresponds to the JSON property eventOccurrenceRange
16902 16903 16904 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16902 def event_occurrence_range @event_occurrence_range end |
#event_revenue_range ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesCustomerSkAdNetworkConversionValueSchemaSkAdNetworkConversionValueSchemaEventRevenueRange
Defines a range for revenue values.
Corresponds to the JSON property eventRevenueRange
16907 16908 16909 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16907 def event_revenue_range @event_revenue_range end |
#event_revenue_value ⇒ Float
Output only. The specific event revenue value.
Corresponds to the JSON property eventRevenueValue
16912 16913 16914 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16912 def event_revenue_value @event_revenue_value end |
#mapped_event_name ⇒ String
Output only. Google event name represented by this conversion value.
Corresponds to the JSON property mappedEventName
16917 16918 16919 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16917 def mapped_event_name @mapped_event_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16924 16925 16926 16927 16928 16929 16930 16931 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16924 def update!(**args) @currency_code = args[:currency_code] if args.key?(:currency_code) @event_counter = args[:event_counter] if args.key?(:event_counter) @event_occurrence_range = args[:event_occurrence_range] if args.key?(:event_occurrence_range) @event_revenue_range = args[:event_revenue_range] if args.key?(:event_revenue_range) @event_revenue_value = args[:event_revenue_value] if args.key?(:event_revenue_value) @mapped_event_name = args[:mapped_event_name] if args.key?(:mapped_event_name) end |