Interface ListChangelogsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListChangelogsResponse
,ListChangelogsResponse.Builder
public interface ListChangelogsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Changelog
getChangelogs(int index)
The list of changelogs.int
getChangelogsCount()
The list of changelogs.List<Changelog>
getChangelogsList()
The list of changelogs.ChangelogOrBuilder
getChangelogsOrBuilder(int index)
The list of changelogs.List<? extends ChangelogOrBuilder>
getChangelogsOrBuilderList()
The list of changelogs.String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getChangelogsList
List<Changelog> getChangelogsList()
The list of changelogs. There will be a maximum number of items returned based on the page_size field in the request. The changelogs will be ordered by timestamp.
repeated .google.cloud.dialogflow.cx.v3beta1.Changelog changelogs = 1;
-
getChangelogs
Changelog getChangelogs(int index)
The list of changelogs. There will be a maximum number of items returned based on the page_size field in the request. The changelogs will be ordered by timestamp.
repeated .google.cloud.dialogflow.cx.v3beta1.Changelog changelogs = 1;
-
getChangelogsCount
int getChangelogsCount()
The list of changelogs. There will be a maximum number of items returned based on the page_size field in the request. The changelogs will be ordered by timestamp.
repeated .google.cloud.dialogflow.cx.v3beta1.Changelog changelogs = 1;
-
getChangelogsOrBuilderList
List<? extends ChangelogOrBuilder> getChangelogsOrBuilderList()
The list of changelogs. There will be a maximum number of items returned based on the page_size field in the request. The changelogs will be ordered by timestamp.
repeated .google.cloud.dialogflow.cx.v3beta1.Changelog changelogs = 1;
-
getChangelogsOrBuilder
ChangelogOrBuilder getChangelogsOrBuilder(int index)
The list of changelogs. There will be a maximum number of items returned based on the page_size field in the request. The changelogs will be ordered by timestamp.
repeated .google.cloud.dialogflow.cx.v3beta1.Changelog changelogs = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-