Package com.google.cloud.retail.v2beta
Interface ListServingConfigsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListServingConfigsResponse,ListServingConfigsResponse.Builder
public interface ListServingConfigsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()Pagination token, if not returned indicates the last page.com.google.protobuf.ByteStringgetNextPageTokenBytes()Pagination token, if not returned indicates the last page.ServingConfiggetServingConfigs(int index)All the ServingConfigs for a given catalog.intgetServingConfigsCount()All the ServingConfigs for a given catalog.List<ServingConfig>getServingConfigsList()All the ServingConfigs for a given catalog.ServingConfigOrBuildergetServingConfigsOrBuilder(int index)All the ServingConfigs for a given catalog.List<? extends ServingConfigOrBuilder>getServingConfigsOrBuilderList()All the ServingConfigs for a given catalog.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getServingConfigsList
List<ServingConfig> getServingConfigsList()
All the ServingConfigs for a given catalog.
repeated .google.cloud.retail.v2beta.ServingConfig serving_configs = 1;
-
getServingConfigs
ServingConfig getServingConfigs(int index)
All the ServingConfigs for a given catalog.
repeated .google.cloud.retail.v2beta.ServingConfig serving_configs = 1;
-
getServingConfigsCount
int getServingConfigsCount()
All the ServingConfigs for a given catalog.
repeated .google.cloud.retail.v2beta.ServingConfig serving_configs = 1;
-
getServingConfigsOrBuilderList
List<? extends ServingConfigOrBuilder> getServingConfigsOrBuilderList()
All the ServingConfigs for a given catalog.
repeated .google.cloud.retail.v2beta.ServingConfig serving_configs = 1;
-
getServingConfigsOrBuilder
ServingConfigOrBuilder getServingConfigsOrBuilder(int index)
All the ServingConfigs for a given catalog.
repeated .google.cloud.retail.v2beta.ServingConfig serving_configs = 1;
-
getNextPageToken
String getNextPageToken()
Pagination token, if not returned indicates the last page.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Pagination token, if not returned indicates the last page.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-