Show / Hide Table of Contents

Class UpdatePropertyRequest

Request message for UpdateProperty RPC.

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

Constructors

UpdatePropertyRequest()

Declaration
public UpdatePropertyRequest()

UpdatePropertyRequest(UpdatePropertyRequest)

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

Properties

Property

Required. The property to update. The property's name field is used to identify the property to be updated.

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

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