Package com.google.cloud.dialogflow.v2
Interface SearchAgentsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchAgentsResponse,SearchAgentsResponse.Builder
public interface SearchAgentsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AgentgetAgents(int index)The list of agents.intgetAgentsCount()The list of agents.List<Agent>getAgentsList()The list of agents.AgentOrBuildergetAgentsOrBuilder(int index)The list of agents.List<? extends AgentOrBuilder>getAgentsOrBuilderList()The list of agents.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
-
getAgentsList
List<Agent> getAgentsList()
The list of agents. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2.Agent agents = 1;
-
getAgents
Agent getAgents(int index)
The list of agents. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2.Agent agents = 1;
-
getAgentsCount
int getAgentsCount()
The list of agents. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2.Agent agents = 1;
-
getAgentsOrBuilderList
List<? extends AgentOrBuilder> getAgentsOrBuilderList()
The list of agents. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2.Agent agents = 1;
-
getAgentsOrBuilder
AgentOrBuilder getAgentsOrBuilder(int index)
The list of agents. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2.Agent agents = 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.
-
-