Show / Hide Table of Contents

Class CohortsRange

Describes date range for a cohort report.

Inheritance
System.Object
CohortsRange
Implements
Google.Protobuf.IMessage<CohortsRange>
System.IEquatable<CohortsRange>
Google.Protobuf.IDeepCloneable<CohortsRange>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Analytics.Data.V1Alpha
Assembly: Google.Analytics.Data.V1Alpha.dll
Syntax
public sealed class CohortsRange : IMessage<CohortsRange>, IEquatable<CohortsRange>, IDeepCloneable<CohortsRange>, IBufferMessage, IMessage

Constructors

CohortsRange()

Declaration
public CohortsRange()

CohortsRange(CohortsRange)

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

Properties

EndOffset

For daily cohorts, this will be the end day offset. For weekly cohorts, this will be the week offset.

Declaration
public int EndOffset { get; set; }
Property Value
Type Description
System.Int32

Granularity

Reporting date range for each cohort is calculated based on these three fields.

Declaration
public CohortsRange.Types.Granularity Granularity { get; set; }
Property Value
Type Description
CohortsRange.Types.Granularity

StartOffset

For daily cohorts, this will be the start day offset. For weekly cohorts, this will be the week offset.

Declaration
public int StartOffset { get; set; }
Property Value
Type Description
System.Int32
Back to top