Class: Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesConversionActionFirebaseSettings
- Inherits:
-
Object
- Object
- Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesConversionActionFirebaseSettings
- 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
Settings related to a Firebase conversion action.
Instance Attribute Summary collapse
-
#event_name ⇒ String
Output only.
-
#project_id ⇒ String
Output only.
-
#property_id ⇒ Fixnum
Output only.
-
#property_name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAdsSearchads360V23ResourcesConversionActionFirebaseSettings
constructor
A new instance of GoogleAdsSearchads360V23ResourcesConversionActionFirebaseSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAdsSearchads360V23ResourcesConversionActionFirebaseSettings
Returns a new instance of GoogleAdsSearchads360V23ResourcesConversionActionFirebaseSettings.
16219 16220 16221 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16219 def initialize(**args) update!(**args) end |
Instance Attribute Details
#event_name ⇒ String
Output only. The event name of a Firebase conversion.
Corresponds to the JSON property eventName
16202 16203 16204 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16202 def event_name @event_name end |
#project_id ⇒ String
Output only. The Firebase project ID of the conversion.
Corresponds to the JSON property projectId
16207 16208 16209 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16207 def project_id @project_id end |
#property_id ⇒ Fixnum
Output only. The GA property ID of the conversion.
Corresponds to the JSON property propertyId
16212 16213 16214 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16212 def property_id @property_id end |
#property_name ⇒ String
Output only. The GA property name of the conversion.
Corresponds to the JSON property propertyName
16217 16218 16219 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16217 def property_name @property_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16224 16225 16226 16227 16228 16229 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16224 def update!(**args) @event_name = args[:event_name] if args.key?(:event_name) @project_id = args[:project_id] if args.key?(:project_id) @property_id = args[:property_id] if args.key?(:property_id) @property_name = args[:property_name] if args.key?(:property_name) end |