Interface ListNotificationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListNotificationsResponse,ListNotificationsResponse.Builder
public interface ListNotificationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()A token, which can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()A token, which can be sent as `page_token` to retrieve the next page.NotificationgetNotifications(int index)List of notifications under a given parent.intgetNotificationsCount()List of notifications under a given parent.List<Notification>getNotificationsList()List of notifications under a given parent.NotificationOrBuildergetNotificationsOrBuilder(int index)List of notifications under a given parent.List<? extends NotificationOrBuilder>getNotificationsOrBuilderList()List of notifications under a given parent.intgetTotalSize()Estimation of a total number of notifications.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNotificationsList
List<Notification> getNotificationsList()
List of notifications under a given parent.
repeated .google.cloud.advisorynotifications.v1.Notification notifications = 1;
-
getNotifications
Notification getNotifications(int index)
List of notifications under a given parent.
repeated .google.cloud.advisorynotifications.v1.Notification notifications = 1;
-
getNotificationsCount
int getNotificationsCount()
List of notifications under a given parent.
repeated .google.cloud.advisorynotifications.v1.Notification notifications = 1;
-
getNotificationsOrBuilderList
List<? extends NotificationOrBuilder> getNotificationsOrBuilderList()
List of notifications under a given parent.
repeated .google.cloud.advisorynotifications.v1.Notification notifications = 1;
-
getNotificationsOrBuilder
NotificationOrBuilder getNotificationsOrBuilder(int index)
List of notifications under a given parent.
repeated .google.cloud.advisorynotifications.v1.Notification notifications = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
getTotalSize
int getTotalSize()
Estimation of a total number of notifications.
int32 total_size = 3;- Returns:
- The totalSize.
-
-