Interface ListTransitionRouteGroupsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListTransitionRouteGroupsResponse,ListTransitionRouteGroupsResponse.Builder
public interface ListTransitionRouteGroupsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteStringgetNextPageTokenBytes()Token to retrieve the next page of results, or empty if there are no more results in the list.TransitionRouteGroupgetTransitionRouteGroups(int index)The list of transition route groups.intgetTransitionRouteGroupsCount()The list of transition route groups.List<TransitionRouteGroup>getTransitionRouteGroupsList()The list of transition route groups.TransitionRouteGroupOrBuildergetTransitionRouteGroupsOrBuilder(int index)The list of transition route groups.List<? extends TransitionRouteGroupOrBuilder>getTransitionRouteGroupsOrBuilderList()The list of transition route groups.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTransitionRouteGroupsList
List<TransitionRouteGroup> getTransitionRouteGroupsList()
The list of transition route groups. There will be a maximum number of items returned based on the page_size field in the request. The list may in some cases be empty or contain fewer entries than page_size even if this isn't the last page.
repeated .google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup transition_route_groups = 1;
-
getTransitionRouteGroups
TransitionRouteGroup getTransitionRouteGroups(int index)
The list of transition route groups. There will be a maximum number of items returned based on the page_size field in the request. The list may in some cases be empty or contain fewer entries than page_size even if this isn't the last page.
repeated .google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup transition_route_groups = 1;
-
getTransitionRouteGroupsCount
int getTransitionRouteGroupsCount()
The list of transition route groups. There will be a maximum number of items returned based on the page_size field in the request. The list may in some cases be empty or contain fewer entries than page_size even if this isn't the last page.
repeated .google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup transition_route_groups = 1;
-
getTransitionRouteGroupsOrBuilderList
List<? extends TransitionRouteGroupOrBuilder> getTransitionRouteGroupsOrBuilderList()
The list of transition route groups. There will be a maximum number of items returned based on the page_size field in the request. The list may in some cases be empty or contain fewer entries than page_size even if this isn't the last page.
repeated .google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup transition_route_groups = 1;
-
getTransitionRouteGroupsOrBuilder
TransitionRouteGroupOrBuilder getTransitionRouteGroupsOrBuilder(int index)
The list of transition route groups. There will be a maximum number of items returned based on the page_size field in the request. The list may in some cases be empty or contain fewer entries than page_size even if this isn't the last page.
repeated .google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup transition_route_groups = 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.
-
-