Class: Google::Apis::FirebaseV1beta1::AddGoogleAnalyticsRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/firebase_v1beta1/classes.rb,
lib/google/apis/firebase_v1beta1/representations.rb,
lib/google/apis/firebase_v1beta1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AddGoogleAnalyticsRequest

Returns a new instance of AddGoogleAnalyticsRequest.



66
67
68
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 66

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

Instance Attribute Details

#analytics_account_idString

The ID for the existing Google Analytics account that you want to link with the FirebaseProject. Specifying this field will provision a new Google Analytics property in your Google Analytics account and associate the new property with the FirebaseProject. Corresponds to the JSON property analyticsAccountId

Returns:

  • (String)


58
59
60
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 58

def 
  @analytics_account_id
end

#analytics_property_idString

The ID for the existing Google Analytics property that you want to associate with the FirebaseProject. Corresponds to the JSON property analyticsPropertyId

Returns:

  • (String)


64
65
66
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 64

def analytics_property_id
  @analytics_property_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



71
72
73
74
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 71

def update!(**args)
  @analytics_account_id = args[:analytics_account_id] if args.key?(:analytics_account_id)
  @analytics_property_id = args[:analytics_property_id] if args.key?(:analytics_property_id)
end