Show / Hide Table of Contents

Class UpdateAccountRequest

Request message for UpdateAccount RPC.

Inheritance
System.Object
UpdateAccountRequest
Implements
Google.Protobuf.IMessage<UpdateAccountRequest>
System.IEquatable<UpdateAccountRequest>
Google.Protobuf.IDeepCloneable<UpdateAccountRequest>
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 UpdateAccountRequest : IMessage<UpdateAccountRequest>, IEquatable<UpdateAccountRequest>, IDeepCloneable<UpdateAccountRequest>, IBufferMessage, IMessage

Constructors

UpdateAccountRequest()

Declaration
public UpdateAccountRequest()

UpdateAccountRequest(UpdateAccountRequest)

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

Properties

Account

Required. The account to update. The account's name field is used to identify the account.

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

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