Package com.google.cloud.support.v2
Interface ListCasesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListCasesResponse
,ListCasesResponse.Builder
public interface ListCasesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Case
getCases(int index)
The list of cases associated with the Google Cloud Resource, after any filters have been applied.int
getCasesCount()
The list of cases associated with the Google Cloud Resource, after any filters have been applied.List<Case>
getCasesList()
The list of cases associated with the Google Cloud Resource, after any filters have been applied.CaseOrBuilder
getCasesOrBuilder(int index)
The list of cases associated with the Google Cloud Resource, after any filters have been applied.List<? extends CaseOrBuilder>
getCasesOrBuilderList()
The list of cases associated with the Google Cloud Resource, after any filters have been applied.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
-
getCasesList
List<Case> getCasesList()
The list of cases associated with the Google Cloud Resource, after any filters have been applied.
repeated .google.cloud.support.v2.Case cases = 1;
-
getCases
Case getCases(int index)
The list of cases associated with the Google Cloud Resource, after any filters have been applied.
repeated .google.cloud.support.v2.Case cases = 1;
-
getCasesCount
int getCasesCount()
The list of cases associated with the Google Cloud Resource, after any filters have been applied.
repeated .google.cloud.support.v2.Case cases = 1;
-
getCasesOrBuilderList
List<? extends CaseOrBuilder> getCasesOrBuilderList()
The list of cases associated with the Google Cloud Resource, after any filters have been applied.
repeated .google.cloud.support.v2.Case cases = 1;
-
getCasesOrBuilder
CaseOrBuilder getCasesOrBuilder(int index)
The list of cases associated with the Google Cloud Resource, after any filters have been applied.
repeated .google.cloud.support.v2.Case cases = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. This should be set in the `page_token` field of the subsequent `ListCasesRequest` 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 the subsequent `ListCasesRequest` message that is issued. If unspecified, there are no more results to retrieve.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-