Package com.google.cloud.retail.v2
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 String
getNextPageToken()
Pagination token, if not returned indicates the last page.com.google.protobuf.ByteString
getNextPageTokenBytes()
Pagination token, if not returned indicates the last page.ServingConfig
getServingConfigs(int index)
All the ServingConfigs for a given catalog.int
getServingConfigsCount()
All the ServingConfigs for a given catalog.List<ServingConfig>
getServingConfigsList()
All the ServingConfigs for a given catalog.ServingConfigOrBuilder
getServingConfigsOrBuilder(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.v2.ServingConfig serving_configs = 1;
-
getServingConfigs
ServingConfig getServingConfigs(int index)
All the ServingConfigs for a given catalog.
repeated .google.cloud.retail.v2.ServingConfig serving_configs = 1;
-
getServingConfigsCount
int getServingConfigsCount()
All the ServingConfigs for a given catalog.
repeated .google.cloud.retail.v2.ServingConfig serving_configs = 1;
-
getServingConfigsOrBuilderList
List<? extends ServingConfigOrBuilder> getServingConfigsOrBuilderList()
All the ServingConfigs for a given catalog.
repeated .google.cloud.retail.v2.ServingConfig serving_configs = 1;
-
getServingConfigsOrBuilder
ServingConfigOrBuilder getServingConfigsOrBuilder(int index)
All the ServingConfigs for a given catalog.
repeated .google.cloud.retail.v2.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.
-
-