Interface ListProductsInProductSetResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListProductsInProductSetResponse
,ListProductsInProductSetResponse.Builder
public interface ListProductsInProductSetResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.Product
getProducts(int index)
The list of Products.int
getProductsCount()
The list of Products.List<Product>
getProductsList()
The list of Products.ProductOrBuilder
getProductsOrBuilder(int index)
The list of Products.List<? extends ProductOrBuilder>
getProductsOrBuilderList()
The list of Products.-
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 list of Products.
repeated .google.cloud.vision.v1p4beta1.Product products = 1;
-
getProducts
Product getProducts(int index)
The list of Products.
repeated .google.cloud.vision.v1p4beta1.Product products = 1;
-
getProductsCount
int getProductsCount()
The list of Products.
repeated .google.cloud.vision.v1p4beta1.Product products = 1;
-
getProductsOrBuilderList
List<? extends ProductOrBuilder> getProductsOrBuilderList()
The list of Products.
repeated .google.cloud.vision.v1p4beta1.Product products = 1;
-
getProductsOrBuilder
ProductOrBuilder getProductsOrBuilder(int index)
The list of Products.
repeated .google.cloud.vision.v1p4beta1.Product products = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-