Class: Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesConversionActionFirebaseSettings

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAdsSearchads360V23ResourcesConversionActionFirebaseSettings

Returns a new instance of GoogleAdsSearchads360V23ResourcesConversionActionFirebaseSettings.



16345
16346
16347
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16345

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

Instance Attribute Details

#event_nameString

Output only. The event name of a Firebase conversion. Corresponds to the JSON property eventName

Returns:

  • (String)


16328
16329
16330
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16328

def event_name
  @event_name
end

#project_idString

Output only. The Firebase project ID of the conversion. Corresponds to the JSON property projectId

Returns:

  • (String)


16333
16334
16335
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16333

def project_id
  @project_id
end

#property_idFixnum

Output only. The GA property ID of the conversion. Corresponds to the JSON property propertyId

Returns:

  • (Fixnum)


16338
16339
16340
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16338

def property_id
  @property_id
end

#property_nameString

Output only. The GA property name of the conversion. Corresponds to the JSON property propertyName

Returns:

  • (String)


16343
16344
16345
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16343

def property_name
  @property_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16350
16351
16352
16353
16354
16355
# File 'lib/google/apis/searchads360_v23/classes.rb', line 16350

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