Interface SearchProductsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchProductsResponse,SearchProductsResponse.Builder
public interface SearchProductsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()A pagination token returned from a previous call to SearchProducts that indicates from where listing should continue.com.google.protobuf.ByteStringgetNextPageTokenBytes()A pagination token returned from a previous call to SearchProducts that indicates from where listing should continue.ProductgetProducts(int index)The `Product` resources computed from the resource context.intgetProductsCount()The `Product` resources computed from the resource context.List<Product>getProductsList()The `Product` resources computed from the resource context.ProductOrBuildergetProductsOrBuilder(int index)The `Product` resources computed from the resource context.List<? extends ProductOrBuilder>getProductsOrBuilderList()The `Product` resources computed from the resource context.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProductsList
List<Product> getProductsList()
The `Product` resources computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Product products = 1;
-
getProducts
Product getProducts(int index)
The `Product` resources computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Product products = 1;
-
getProductsCount
int getProductsCount()
The `Product` resources computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Product products = 1;
-
getProductsOrBuilderList
List<? extends ProductOrBuilder> getProductsOrBuilderList()
The `Product` resources computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Product products = 1;
-
getProductsOrBuilder
ProductOrBuilder getProductsOrBuilder(int index)
The `Product` resources computed from the resource context.
repeated .google.cloud.privatecatalog.v1beta1.Product products = 1;
-
getNextPageToken
String getNextPageToken()
A pagination token returned from a previous call to SearchProducts that indicates from where listing should continue.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A pagination token returned from a previous call to SearchProducts that indicates from where listing should continue.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-