Package com.google.cloud.support.v2
Interface SearchCaseClassificationsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchCaseClassificationsRequest
,SearchCaseClassificationsRequest.Builder
public interface SearchCaseClassificationsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getPageSize()
The maximum number of cases fetched with each request.String
getPageToken()
A token identifying the page of results to return.com.google.protobuf.ByteString
getPageTokenBytes()
A token identifying the page of results to return.String
getQuery()
An expression written in the Google Cloud filter language.com.google.protobuf.ByteString
getQueryBytes()
An expression written in the Google Cloud filter language.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getQuery
String getQuery()
An expression written in the Google Cloud filter language. If non-empty, then only cases whose fields match the filter are returned. If empty, then no messages are filtered out.
string query = 1;
- Returns:
- The query.
-
getQueryBytes
com.google.protobuf.ByteString getQueryBytes()
An expression written in the Google Cloud filter language. If non-empty, then only cases whose fields match the filter are returned. If empty, then no messages are filtered out.
string query = 1;
- Returns:
- The bytes for query.
-
getPageSize
int getPageSize()
The maximum number of cases fetched with each request.
int32 page_size = 2;
- Returns:
- The pageSize.
-
getPageToken
String getPageToken()
A token identifying the page of results to return. If unspecified, the first page is retrieved.
string page_token = 3;
- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
A token identifying the page of results to return. If unspecified, the first page is retrieved.
string page_token = 3;
- Returns:
- The bytes for pageToken.
-
-