Package com.google.cloud.dialogflow.v2
Interface ListEnvironmentsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListEnvironmentsResponse
,ListEnvironmentsResponse.Builder
public interface ListEnvironmentsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Environment
getEnvironments(int index)
The list of agent environments.int
getEnvironmentsCount()
The list of agent environments.List<Environment>
getEnvironmentsList()
The list of agent environments.EnvironmentOrBuilder
getEnvironmentsOrBuilder(int index)
The list of agent environments.List<? extends EnvironmentOrBuilder>
getEnvironmentsOrBuilderList()
The list of agent environments.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
-
getEnvironmentsList
List<Environment> getEnvironmentsList()
The list of agent environments. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2.Environment environments = 1;
-
getEnvironments
Environment getEnvironments(int index)
The list of agent environments. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2.Environment environments = 1;
-
getEnvironmentsCount
int getEnvironmentsCount()
The list of agent environments. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2.Environment environments = 1;
-
getEnvironmentsOrBuilderList
List<? extends EnvironmentOrBuilder> getEnvironmentsOrBuilderList()
The list of agent environments. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2.Environment environments = 1;
-
getEnvironmentsOrBuilder
EnvironmentOrBuilder getEnvironmentsOrBuilder(int index)
The list of agent environments. There will be a maximum number of items returned based on the page_size field in the request.
repeated .google.cloud.dialogflow.v2.Environment environments = 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.
-
-