Interface ListAlbumsRequestOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    ListAlbumsRequest, ListAlbumsRequest.Builder

    public interface ListAlbumsRequestOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getExcludeNonAppCreatedData()
      If set, the results exclude media items that were not created by this app.
      int getPageSize()
      Maximum number of albums to return in the response.
      java.lang.String getPageToken()
      A continuation token to get the next page of the results.
      com.google.protobuf.ByteString getPageTokenBytes()
      A continuation token to get the next page of the results.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getPageSize

        int getPageSize()
         Maximum number of albums to return in the response. Fewer albums might be
         returned than the specified number. The default `pageSize` is 20, the
         maximum is 50.
         
        int32 page_size = 1;
        Returns:
        The pageSize.
      • getPageToken

        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 `listAlbums` request.
         
        string page_token = 2;
        Returns:
        The pageToken.
      • getPageTokenBytes

        com.google.protobuf.ByteString getPageTokenBytes()
         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 `listAlbums` request.
         
        string page_token = 2;
        Returns:
        The bytes for pageToken.
      • getExcludeNonAppCreatedData

        boolean getExcludeNonAppCreatedData()
         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;
        Returns:
        The excludeNonAppCreatedData.