Interface ListReservationTopicsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListReservationTopicsResponse
,ListReservationTopicsResponse.Builder
public interface ListReservationTopicsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
A token that can be sent as `page_token` to retrieve the next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token that can be sent as `page_token` to retrieve the next page of results.String
getTopics(int index)
The names of topics attached to the reservation.com.google.protobuf.ByteString
getTopicsBytes(int index)
The names of topics attached to the reservation.int
getTopicsCount()
The names of topics attached to the reservation.List<String>
getTopicsList()
The names of topics attached to the reservation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTopicsList
List<String> getTopicsList()
The names of topics attached to the reservation. The order of the topics is unspecified.
repeated string topics = 1;
- Returns:
- A list containing the topics.
-
getTopicsCount
int getTopicsCount()
The names of topics attached to the reservation. The order of the topics is unspecified.
repeated string topics = 1;
- Returns:
- The count of topics.
-
getTopics
String getTopics(int index)
The names of topics attached to the reservation. The order of the topics is unspecified.
repeated string topics = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The topics at the given index.
-
getTopicsBytes
com.google.protobuf.ByteString getTopicsBytes(int index)
The names of topics attached to the reservation. The order of the topics is unspecified.
repeated string topics = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the topics at the given index.
-
getNextPageToken
String getNextPageToken()
A token that can be sent as `page_token` to retrieve the next page of results. If this field is omitted, there are no more results.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token that can be sent as `page_token` to retrieve the next page of results. If this field is omitted, there are no more results.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-