Interface ListProductsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListProductsResponse
,ListProductsResponse.Builder
public interface ListProductsResponseOrBuilder 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)
List of products.int
getProductsCount()
List of products.List<Product>
getProductsList()
List of products.ProductOrBuilder
getProductsOrBuilder(int index)
List of products.List<? extends ProductOrBuilder>
getProductsOrBuilderList()
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()
List of products.
repeated .google.cloud.vision.v1p4beta1.Product products = 1;
-
getProducts
Product getProducts(int index)
List of products.
repeated .google.cloud.vision.v1p4beta1.Product products = 1;
-
getProductsCount
int getProductsCount()
List of products.
repeated .google.cloud.vision.v1p4beta1.Product products = 1;
-
getProductsOrBuilderList
List<? extends ProductOrBuilder> getProductsOrBuilderList()
List of products.
repeated .google.cloud.vision.v1p4beta1.Product products = 1;
-
getProductsOrBuilder
ProductOrBuilder getProductsOrBuilder(int index)
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.
-
-