Package com.google.cloud.support.v2
Interface ListCommentsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListCommentsResponse,ListCommentsResponse.Builder
public interface ListCommentsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommentgetComments(int index)The list of Comments associated with the given Case.intgetCommentsCount()The list of Comments associated with the given Case.List<Comment>getCommentsList()The list of Comments associated with the given Case.CommentOrBuildergetCommentsOrBuilder(int index)The list of Comments associated with the given Case.List<? extends CommentOrBuilder>getCommentsOrBuilderList()The list of Comments associated with the given Case.StringgetNextPageToken()A token to retrieve the next page of results.com.google.protobuf.ByteStringgetNextPageTokenBytes()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
-
getCommentsList
List<Comment> getCommentsList()
The list of Comments associated with the given Case.
repeated .google.cloud.support.v2.Comment comments = 1;
-
getComments
Comment getComments(int index)
The list of Comments associated with the given Case.
repeated .google.cloud.support.v2.Comment comments = 1;
-
getCommentsCount
int getCommentsCount()
The list of Comments associated with the given Case.
repeated .google.cloud.support.v2.Comment comments = 1;
-
getCommentsOrBuilderList
List<? extends CommentOrBuilder> getCommentsOrBuilderList()
The list of Comments associated with the given Case.
repeated .google.cloud.support.v2.Comment comments = 1;
-
getCommentsOrBuilder
CommentOrBuilder getCommentsOrBuilder(int index)
The list of Comments associated with the given Case.
repeated .google.cloud.support.v2.Comment comments = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve the next page of results. This should be set in the `page_token` field of subsequent `ListCommentsRequest` 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 `ListCommentsRequest` message that is issued. If unspecified, there are no more results to retrieve.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-