Class: Google::Apis::FirebaseV1beta1::AddGoogleAnalyticsRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseV1beta1::AddGoogleAnalyticsRequest
- 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
-
#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.
66 67 68 |
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 66 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
58 59 60 |
# File 'lib/google/apis/firebase_v1beta1/classes.rb', line 58 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
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 |