Show / Hide Table of Contents

Class AccessDateRange

A contiguous range of days: startDate, startDate + 1, ..., endDate.

Inheritance
object
AccessDateRange
Implements
IMessage<AccessDateRange>
IEquatable<AccessDateRange>
IDeepCloneable<AccessDateRange>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Analytics.Admin.V1Beta
Assembly: Google.Analytics.Admin.V1Beta.dll
Syntax
public sealed class AccessDateRange : IMessage<AccessDateRange>, IEquatable<AccessDateRange>, IDeepCloneable<AccessDateRange>, IBufferMessage, IMessage

Constructors

AccessDateRange()

Declaration
public AccessDateRange()

AccessDateRange(AccessDateRange)

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

Properties

EndDate

The inclusive end date for the query in the format YYYY-MM-DD. Cannot be before startDate. The format NdaysAgo, yesterday, or today is also accepted, and in that case, the date is inferred based on the current time in the request's time zone.

Declaration
public string EndDate { get; set; }
Property Value
Type Description
string

StartDate

The inclusive start date for the query in the format YYYY-MM-DD. Cannot be after endDate. The format NdaysAgo, yesterday, or today is also accepted, and in that case, the date is inferred based on the current time in the request's time zone.

Declaration
public string StartDate { get; set; }
Property Value
Type Description
string
In this article
Back to top Generated by DocFX