class Google::Apis::FirebaseV1beta1::AnalyticsProperty

Details of a Google Analytics property

Attributes

display_name[RW]

The display name of the Google Analytics property associated with the specified `FirebaseProject`. Corresponds to the JSON property `displayName` @return [String]

id[RW]

The globally unique, Google-assigned identifier of the Google Analytics property associated with the specified `FirebaseProject`. If you called [` AddGoogleAnalytics`](../../v1beta1/projects/addGoogleAnalytics) to link the ` FirebaseProject` with a Google Analytics account, the value in this `id` field is the same as the ID of the property either specified or provisioned with that call to `AddGoogleAnalytics`. Corresponds to the JSON property `id` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebase_v1beta1/classes.rb, line 171
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 176
def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @id = args[:id] if args.key?(:id)
end