Show / Hide Table of Contents

Class FirebaseLink

A link between an GA4 property and a Firebase project.

Inheritance
System.Object
FirebaseLink
Implements
Google.Protobuf.IMessage<FirebaseLink>
System.IEquatable<FirebaseLink>
Google.Protobuf.IDeepCloneable<FirebaseLink>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Analytics.Admin.V1Alpha
Assembly: Google.Analytics.Admin.V1Alpha.dll
Syntax
public sealed class FirebaseLink : IMessage<FirebaseLink>, IEquatable<FirebaseLink>, IDeepCloneable<FirebaseLink>, IBufferMessage, IMessage

Constructors

FirebaseLink()

Declaration
public FirebaseLink()

FirebaseLink(FirebaseLink)

Declaration
public FirebaseLink(FirebaseLink other)
Parameters
Type Name Description
FirebaseLink other

Properties

CreateTime

Output only. Time when this FirebaseLink was originally created.

Declaration
public Timestamp CreateTime { get; set; }
Property Value
Type Description
Google.Protobuf.WellKnownTypes.Timestamp

FirebaseLinkName

FirebaseLinkName-typed view over the Name resource name property.

Declaration
public FirebaseLinkName FirebaseLinkName { get; set; }
Property Value
Type Description
FirebaseLinkName

MaximumUserAccess

Maximum user access to the GA4 property allowed to admins of the linked Firebase project.

Declaration
public MaximumUserAccess MaximumUserAccess { get; set; }
Property Value
Type Description
MaximumUserAccess

Name

Output only. Example format: properties/1234/firebaseLinks/5678

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

Project

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'

Declaration
public string Project { get; set; }
Property Value
Type Description
System.String
Back to top