Interface ListMediaItemsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListMediaItemsRequest,ListMediaItemsRequest.Builder
public interface ListMediaItemsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetPageSize()Maximum number of media items to return in the response.java.lang.StringgetPageToken()A continuation token to get the next page of the results.com.google.protobuf.ByteStringgetPageTokenBytes()A continuation token to get the next page of the results.-
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 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;
-
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 `listMediaItems` request.
string page_token = 2;
-
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 `listMediaItems` request.
string page_token = 2;
-
-