com.google.photos.library.v1.proto.DateRangeOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-photos-library-client Show documentation
Show all versions of google-photos-library-client Show documentation
Google Photos Library API Client Library for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/photos/library/v1/photos_library.proto
package com.google.photos.library.v1.proto;
public interface DateRangeOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.photos.library.v1.DateRange)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The start date (included as part of the range) in one of the formats
* described.
*
*
* .google.type.Date start_date = 1;
*/
boolean hasStartDate();
/**
*
*
*
* The start date (included as part of the range) in one of the formats
* described.
*
*
* .google.type.Date start_date = 1;
*/
com.google.type.Date getStartDate();
/**
*
*
*
* The start date (included as part of the range) in one of the formats
* described.
*
*
* .google.type.Date start_date = 1;
*/
com.google.type.DateOrBuilder getStartDateOrBuilder();
/**
*
*
*
* The end date (included as part of the range). It must be specified in the
* same format as the start date.
*
*
* .google.type.Date end_date = 2;
*/
boolean hasEndDate();
/**
*
*
*
* The end date (included as part of the range). It must be specified in the
* same format as the start date.
*
*
* .google.type.Date end_date = 2;
*/
com.google.type.Date getEndDate();
/**
*
*
*
* The end date (included as part of the range). It must be specified in the
* same format as the start date.
*
*
* .google.type.Date end_date = 2;
*/
com.google.type.DateOrBuilder getEndDateOrBuilder();
}