com.google.photos.library.v1.proto.ListSharedAlbumsRequestOrBuilder 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 ListSharedAlbumsRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.photos.library.v1.ListSharedAlbumsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Maximum number of albums to return in the response. The default number of
* albums to return at a time is 20. The maximum `pageSize` is 50.
*
*
* int32 page_size = 1;
*/
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 `listSharedAlbums` request.
*
*
* string page_token = 2;
*/
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 `listSharedAlbums` request.
*
*
* string page_token = 2;
*/
com.google.protobuf.ByteString getPageTokenBytes();
/**
*
*
*
* If set, the results exclude media items that were not created by this app.
* Defaults to false (all albums are returned). This field is ignored if the
* photoslibrary.readonly.appcreateddata scope is used.
*
*
* bool exclude_non_app_created_data = 3;
*/
boolean getExcludeNonAppCreatedData();
}