class Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFirebaseLink

A link between an GA4 property and a Firebase project.

Attributes

create_time[RW]

Output only. Time when this FirebaseLink was originally created. Corresponds to the JSON property `createTime` @return [String]

name[RW]

Output only. Example format: properties/1234/firebaseLinks/5678 Corresponds to the JSON property `name` @return [String]

project[RW]

Immutable. Firebase project resource name. When creating a FirebaseLink, you may provide this resource name using either a project number or project ID. Once this resource has been created, returned FirebaseLinks will always have a project_name that contains a project number. Format: 'projects/`project number` ' Example: 'projects/1234' Corresponds to the JSON property `project` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 1266
def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @name = args[:name] if args.key?(:name)
  @project = args[:project] if args.key?(:project)
end