Show / Hide Table of Contents

Class UpdateFirebaseLinkRequest

Request message for UpdateFirebaseLink RPC

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

Constructors

UpdateFirebaseLinkRequest()

Declaration
public UpdateFirebaseLinkRequest()

UpdateFirebaseLinkRequest(UpdateFirebaseLinkRequest)

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

Properties

FirebaseLink

Required. The Firebase link to update.

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

UpdateMask

Required. The list of fields to be updated. Field names must be in snake case (e.g., "field_to_update"). Omitted fields will not be updated. To replace the entire entity, use one path with the string "*" to match all fields.

Declaration
public FieldMask UpdateMask { get; set; }
Property Value
Type Description
Google.Protobuf.WellKnownTypes.FieldMask
In This Article
Back to top