Package com.google.cloud.support.v2
Interface SearchCaseClassificationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchCaseClassificationsResponse
,SearchCaseClassificationsResponse.Builder
public interface SearchCaseClassificationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CaseClassification
getCaseClassifications(int index)
The classifications retrieved.int
getCaseClassificationsCount()
The classifications retrieved.List<CaseClassification>
getCaseClassificationsList()
The classifications retrieved.CaseClassificationOrBuilder
getCaseClassificationsOrBuilder(int index)
The classifications retrieved.List<? extends CaseClassificationOrBuilder>
getCaseClassificationsOrBuilderList()
The classifications retrieved.String
getNextPageToken()
A token to retrieve the next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token to retrieve the next page of results.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCaseClassificationsList
List<CaseClassification> getCaseClassificationsList()
The classifications retrieved.
repeated .google.cloud.support.v2.CaseClassification case_classifications = 1;
-
getCaseClassifications
CaseClassification getCaseClassifications(int index)
The classifications retrieved.
repeated .google.cloud.support.v2.CaseClassification case_classifications = 1;
-
getCaseClassificationsCount
int getCaseClassificationsCount()
The classifications retrieved.
repeated .google.cloud.support.v2.CaseClassification case_classifications = 1;
-
getCaseClassificationsOrBuilderList
List<? extends CaseClassificationOrBuilder> getCaseClassificationsOrBuilderList()
The classifications retrieved.
repeated .google.cloud.support.v2.CaseClassification case_classifications = 1;
-
getCaseClassificationsOrBuilder
CaseClassificationOrBuilder getCaseClassificationsOrBuilder(int index)
The classifications retrieved.
repeated .google.cloud.support.v2.CaseClassification case_classifications = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. This should be set in the `page_token` field of subsequent `SearchCaseClassificationsRequest` message that is issued. If unspecified, there are no more results to retrieve.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve the next page of results. This should be set in the `page_token` field of subsequent `SearchCaseClassificationsRequest` message that is issued. If unspecified, there are no more results to retrieve.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-