Show / Hide Table of Contents

Class WebDataStream

A resource message representing a Google Analytics web stream.

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

Constructors

WebDataStream()

Declaration
public WebDataStream()

WebDataStream(WebDataStream)

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

Properties

CreateTime

Output only. Time when this stream was originally created.

Declaration
public Timestamp CreateTime { get; set; }
Property Value
Type Description
Google.Protobuf.WellKnownTypes.Timestamp

DefaultUri

Immutable. Domain name of the web app being measured, or empty. Example: "http://www.google.com", "https://www.google.com"

Declaration
public string DefaultUri { get; set; }
Property Value
Type Description
System.String

DisplayName

Required. Human-readable display name for the Data Stream.

The max allowed display name length is 100 UTF-16 code units.

Declaration
public string DisplayName { get; set; }
Property Value
Type Description
System.String

FirebaseAppId

Output only. ID of the corresponding web app in Firebase, if any. This ID can change if the web app is deleted and recreated.

Declaration
public string FirebaseAppId { get; set; }
Property Value
Type Description
System.String

MeasurementId

Output only. Analytics "Measurement ID", without the "G-" prefix. Example: "G-1A2BCD345E" would just be "1A2BCD345E"

Declaration
public string MeasurementId { get; set; }
Property Value
Type Description
System.String

Name

Output only. Resource name of this Data Stream. Format: properties/{property_id}/webDataStreams/{stream_id} Example: "properties/1000/webDataStreams/2000"

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

UpdateTime

Output only. Time when stream payload fields were last updated.

Declaration
public Timestamp UpdateTime { get; set; }
Property Value
Type Description
Google.Protobuf.WellKnownTypes.Timestamp

WebDataStreamName

WebDataStreamName-typed view over the Name resource name property.

Declaration
public WebDataStreamName WebDataStreamName { get; set; }
Property Value
Type Description
WebDataStreamName
Back to top