Show / Hide Table of Contents

Class UpdateWebDataStreamRequest

Request message for UpdateWebDataStream RPC.

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

Constructors

UpdateWebDataStreamRequest()

Declaration
public UpdateWebDataStreamRequest()

UpdateWebDataStreamRequest(UpdateWebDataStreamRequest)

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

Properties

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

WebDataStream

Required. The web stream to update. The name field is used to identify the web stream to be updated.

Declaration
public WebDataStream WebDataStream { get; set; }
Property Value
Type Description
WebDataStream
In This Article
Back to top