com.google.cloud.dialogflow.v2.BatchDeleteIntentsRequestOrBuilder 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 BatchDeleteIntentsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.BatchDeleteIntentsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Required. The name of the agent to delete all entities types for. Format:
* `projects/<Project ID>/agent`.
*
*
* string parent = 1;
*/
java.lang.String getParent();
/**
*
* Required. The name of the agent to delete all entities types for. Format:
* `projects/<Project ID>/agent`.
*
*
* string parent = 1;
*/
com.google.protobuf.ByteString
getParentBytes();
/**
*
* Required. The collection of intents to delete. Only intent `name` must be
* filled in.
*
*
* repeated .google.cloud.dialogflow.v2.Intent intents = 2;
*/
java.util.List
getIntentsList();
/**
*
* Required. The collection of intents to delete. Only intent `name` must be
* filled in.
*
*
* repeated .google.cloud.dialogflow.v2.Intent intents = 2;
*/
com.google.cloud.dialogflow.v2.Intent getIntents(int index);
/**
*
* Required. The collection of intents to delete. Only intent `name` must be
* filled in.
*
*
* repeated .google.cloud.dialogflow.v2.Intent intents = 2;
*/
int getIntentsCount();
/**
*
* Required. The collection of intents to delete. Only intent `name` must be
* filled in.
*
*
* repeated .google.cloud.dialogflow.v2.Intent intents = 2;
*/
java.util.List extends com.google.cloud.dialogflow.v2.IntentOrBuilder>
getIntentsOrBuilderList();
/**
*
* Required. The collection of intents to delete. Only intent `name` must be
* filled in.
*
*
* repeated .google.cloud.dialogflow.v2.Intent intents = 2;
*/
com.google.cloud.dialogflow.v2.IntentOrBuilder getIntentsOrBuilder(
int index);
}