class Google::Apis::FirebaseV1beta1::AddGoogleAnalyticsRequest

Attributes

analytics_account_id[RW]

The ID for the existing [Google Analytics account](www.google.com/ analytics/) 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` @return [String]

analytics_property_id[RW]

The ID for the existing Google Analytics property that you want to associate with the `FirebaseProject`. Corresponds to the JSON property `analyticsPropertyId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebase_v1beta1/classes.rb, line 66
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# 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