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.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 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

The list of fields to be updated. Omitted fields will not be updated.

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