com.google.cloud.dialogflow.v2.ListIntentsRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
PROTO library for proto-google-cloud-dialogflow-v2
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dialogflow/v2/intent.proto
package com.google.cloud.dialogflow.v2;
public interface ListIntentsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.ListIntentsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Required. The agent to list all intents from.
* Format: `projects/<Project ID>/agent`.
*
*
* string parent = 1;
*/
java.lang.String getParent();
/**
*
* Required. The agent to list all intents from.
* Format: `projects/<Project ID>/agent`.
*
*
* string parent = 1;
*/
com.google.protobuf.ByteString
getParentBytes();
/**
*
* Optional. The language to list training phrases, parameters and rich
* messages for. If not specified, the agent's default language is used.
* [More than a dozen
* languages](https://dialogflow.com/docs/reference/language) are supported.
* Note: languages must be enabled in the agent before they can be used.
*
*
* string language_code = 2;
*/
java.lang.String getLanguageCode();
/**
*
* Optional. The language to list training phrases, parameters and rich
* messages for. If not specified, the agent's default language is used.
* [More than a dozen
* languages](https://dialogflow.com/docs/reference/language) are supported.
* Note: languages must be enabled in the agent before they can be used.
*
*
* string language_code = 2;
*/
com.google.protobuf.ByteString
getLanguageCodeBytes();
/**
*
* Optional. The resource view to apply to the returned intent.
*
*
* .google.cloud.dialogflow.v2.IntentView intent_view = 3;
*/
int getIntentViewValue();
/**
*
* Optional. The resource view to apply to the returned intent.
*
*
* .google.cloud.dialogflow.v2.IntentView intent_view = 3;
*/
com.google.cloud.dialogflow.v2.IntentView getIntentView();
/**
*
* Optional. The maximum number of items to return in a single page. By
* default 100 and at most 1000.
*
*
* int32 page_size = 4;
*/
int getPageSize();
/**
*
* Optional. The next_page_token value returned from a previous list request.
*
*
* string page_token = 5;
*/
java.lang.String getPageToken();
/**
*
* Optional. The next_page_token value returned from a previous list request.
*
*
* string page_token = 5;
*/
com.google.protobuf.ByteString
getPageTokenBytes();
}