com.google.photos.library.v1.proto.ListMediaItemsRequestOrBuilder 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 ListMediaItemsRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.photos.library.v1.ListMediaItemsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Maximum number of media items to return in the response. Fewer media items
* might be returned than the specified number. The default `pageSize` is 25,
* the maximum is 100.
*
*
* int32 page_size = 1;
*
* @return The pageSize.
*/
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 `listMediaItems` request.
*
*
* string page_token = 2;
*
* @return The pageToken.
*/
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 `listMediaItems` request.
*
*
* string page_token = 2;
*
* @return The bytes for pageToken.
*/
com.google.protobuf.ByteString getPageTokenBytes();
}