com.google.photos.library.v1.proto.SearchMediaItemsRequestOrBuilder 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 SearchMediaItemsRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.photos.library.v1.SearchMediaItemsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Identifier of an album. If populated, lists all media items in
* specified album. Can't set in conjunction with any filters.
*
*
* string album_id = 1;
*/
java.lang.String getAlbumId();
/**
*
*
*
* Identifier of an album. If populated, lists all media items in
* specified album. Can't set in conjunction with any filters.
*
*
* string album_id = 1;
*/
com.google.protobuf.ByteString getAlbumIdBytes();
/**
*
*
*
* Maximum number of media items to return in the response. The default number
* of media items to return at a time is 25. The maximum
* `pageSize` is 100.
*
*
* int32 page_size = 2;
*/
int getPageSize();
/**
*
*
*
* A continuation token to get the next page of the results. Adding this to
* the request returns the rows after the `pageToken`. The `pageToken` should
* be the value returned in the `nextPageToken` parameter in the response to
* the `searchMediaItems` request.
*
*
* string page_token = 3;
*/
java.lang.String getPageToken();
/**
*
*
*
* A continuation token to get the next page of the results. Adding this to
* the request returns the rows after the `pageToken`. The `pageToken` should
* be the value returned in the `nextPageToken` parameter in the response to
* the `searchMediaItems` request.
*
*
* string page_token = 3;
*/
com.google.protobuf.ByteString getPageTokenBytes();
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*/
boolean hasFilters();
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*/
com.google.photos.library.v1.proto.Filters getFilters();
/**
*
*
*
* Filters to apply to the request. Can't be set in conjunction with an
* `albumId`.
*
*
* .google.photos.library.v1.Filters filters = 4;
*/
com.google.photos.library.v1.proto.FiltersOrBuilder getFiltersOrBuilder();
}