Interface ListFlowsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListFlowsResponse,ListFlowsResponse.Builder
public interface ListFlowsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowgetFlows(int index)The list of flows.intgetFlowsCount()The list of flows.List<Flow>getFlowsList()The list of flows.FlowOrBuildergetFlowsOrBuilder(int index)The list of flows.List<? extends FlowOrBuilder>getFlowsOrBuilderList()The list of flows.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.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFlowsList
List<Flow> getFlowsList()
The list of flows. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.cx.v3beta1.Flow flows = 1;
-
getFlows
Flow getFlows(int index)
The list of flows. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.cx.v3beta1.Flow flows = 1;
-
getFlowsCount
int getFlowsCount()
The list of flows. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.cx.v3beta1.Flow flows = 1;
-
getFlowsOrBuilderList
List<? extends FlowOrBuilder> getFlowsOrBuilderList()
The list of flows. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.cx.v3beta1.Flow flows = 1;
-
getFlowsOrBuilder
FlowOrBuilder getFlowsOrBuilder(int index)
The list of flows. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.cx.v3beta1.Flow flows = 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.
-
-