Interface AccessDateRangeOrBuilder (0.17.0)

public interface AccessDateRangeOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getEndDate()

public abstract String getEndDate()

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.

string end_date = 2;

Returns
TypeDescription
String

The endDate.

getEndDateBytes()

public abstract ByteString getEndDateBytes()

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.

string end_date = 2;

Returns
TypeDescription
ByteString

The bytes for endDate.

getStartDate()

public abstract String getStartDate()

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.

string start_date = 1;

Returns
TypeDescription
String

The startDate.

getStartDateBytes()

public abstract ByteString getStartDateBytes()

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.

string start_date = 1;

Returns
TypeDescription
ByteString

The bytes for startDate.