Show / Hide Table of Contents

Class AndroidAppDataStream

A resource message representing a Google Analytics Android app stream.

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

Constructors

AndroidAppDataStream()

Declaration
public AndroidAppDataStream()

AndroidAppDataStream(AndroidAppDataStream)

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

Properties

AndroidAppDataStreamName

AndroidAppDataStreamName-typed view over the Name resource name property.

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

CreateTime

Output only. Time when this stream was originally created.

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

DisplayName

Human-readable display name for the Data Stream.

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

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

FirebaseAppId

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

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

Name

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

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

PackageName

Immutable. The package name for the app being measured. Example: "com.example.myandroidapp"

Declaration
public string PackageName { 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
Back to top