Package com.google.cloud.retail.v2
Interface ListCatalogsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListCatalogsResponse
,ListCatalogsResponse.Builder
public interface ListCatalogsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Catalog
getCatalogs(int index)
All the customer's [Catalog][google.cloud.retail.v2.Catalog]s.int
getCatalogsCount()
All the customer's [Catalog][google.cloud.retail.v2.Catalog]s.List<Catalog>
getCatalogsList()
All the customer's [Catalog][google.cloud.retail.v2.Catalog]s.CatalogOrBuilder
getCatalogsOrBuilder(int index)
All the customer's [Catalog][google.cloud.retail.v2.Catalog]s.List<? extends CatalogOrBuilder>
getCatalogsOrBuilderList()
All the customer's [Catalog][google.cloud.retail.v2.Catalog]s.String
getNextPageToken()
A token that can be sent as [ListCatalogsRequest.page_token][google.cloud.retail.v2.ListCatalogsRequest.page_token] to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token that can be sent as [ListCatalogsRequest.page_token][google.cloud.retail.v2.ListCatalogsRequest.page_token] to retrieve the next page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCatalogsList
List<Catalog> getCatalogsList()
All the customer's [Catalog][google.cloud.retail.v2.Catalog]s.
repeated .google.cloud.retail.v2.Catalog catalogs = 1;
-
getCatalogs
Catalog getCatalogs(int index)
All the customer's [Catalog][google.cloud.retail.v2.Catalog]s.
repeated .google.cloud.retail.v2.Catalog catalogs = 1;
-
getCatalogsCount
int getCatalogsCount()
All the customer's [Catalog][google.cloud.retail.v2.Catalog]s.
repeated .google.cloud.retail.v2.Catalog catalogs = 1;
-
getCatalogsOrBuilderList
List<? extends CatalogOrBuilder> getCatalogsOrBuilderList()
All the customer's [Catalog][google.cloud.retail.v2.Catalog]s.
repeated .google.cloud.retail.v2.Catalog catalogs = 1;
-
getCatalogsOrBuilder
CatalogOrBuilder getCatalogsOrBuilder(int index)
All the customer's [Catalog][google.cloud.retail.v2.Catalog]s.
repeated .google.cloud.retail.v2.Catalog catalogs = 1;
-
getNextPageToken
String getNextPageToken()
A token that can be sent as [ListCatalogsRequest.page_token][google.cloud.retail.v2.ListCatalogsRequest.page_token] to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token that can be sent as [ListCatalogsRequest.page_token][google.cloud.retail.v2.ListCatalogsRequest.page_token] to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-