Class: Google::Apis::FirebaseV1beta1::AddGoogleAnalyticsRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseV1beta1::AddGoogleAnalyticsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/firebase_v1beta1/classes.rb,
generated/google/apis/firebase_v1beta1/representations.rb,
generated/google/apis/firebase_v1beta1/representations.rb
Instance Attribute Summary collapse
-
#analytics_account_id ⇒ String
The ID for the existing Google Analytics account that you want to link with the
FirebaseProject
. -
#analytics_property_id ⇒ String
The ID for the existing Google Analytics property that you want to associate with the
FirebaseProject
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AddGoogleAnalyticsRequest
constructor
A new instance of AddGoogleAnalyticsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AddGoogleAnalyticsRequest
Returns a new instance of AddGoogleAnalyticsRequest.
86 87 88 |
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 86 def initialize(**args) update!(**args) end |
Instance Attribute Details
#analytics_account_id ⇒ String
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
78 79 80 |
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 78 def analytics_account_id @analytics_account_id end |
#analytics_property_id ⇒ String
The ID for the existing Google Analytics property that you want to associate
with the FirebaseProject
.
Corresponds to the JSON property analyticsPropertyId
84 85 86 |
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 84 def analytics_property_id @analytics_property_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
91 92 93 94 |
# File 'generated/google/apis/firebase_v1beta1/classes.rb', line 91 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 |