com.google.cloud.dialogflow.v2.BatchDeleteEntitiesRequestOrBuilder 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/entity_type.proto
package com.google.cloud.dialogflow.v2;
public interface BatchDeleteEntitiesRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.BatchDeleteEntitiesRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. The name of the entity type to delete entries for. Format:
* `projects/<Project ID>/agent/entityTypes/<Entity Type ID>`.
*
*
* string parent = 1;
*/
java.lang.String getParent();
/**
*
*
*
* Required. The name of the entity type to delete entries for. Format:
* `projects/<Project ID>/agent/entityTypes/<Entity Type ID>`.
*
*
* string parent = 1;
*/
com.google.protobuf.ByteString getParentBytes();
/**
*
*
*
* Required. The canonical `values` of the entities to delete. Note that
* these are not fully-qualified names, i.e. they don't start with
* `projects/<Project ID>`.
*
*
* repeated string entity_values = 2;
*/
java.util.List getEntityValuesList();
/**
*
*
*
* Required. The canonical `values` of the entities to delete. Note that
* these are not fully-qualified names, i.e. they don't start with
* `projects/<Project ID>`.
*
*
* repeated string entity_values = 2;
*/
int getEntityValuesCount();
/**
*
*
*
* Required. The canonical `values` of the entities to delete. Note that
* these are not fully-qualified names, i.e. they don't start with
* `projects/<Project ID>`.
*
*
* repeated string entity_values = 2;
*/
java.lang.String getEntityValues(int index);
/**
*
*
*
* Required. The canonical `values` of the entities to delete. Note that
* these are not fully-qualified names, i.e. they don't start with
* `projects/<Project ID>`.
*
*
* repeated string entity_values = 2;
*/
com.google.protobuf.ByteString getEntityValuesBytes(int index);
/**
*
*
*
* Optional. The language of entity synonyms defined in `entities`. If not
* specified, the agent's default language is used.
* [Many
* languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/language)
* are supported. Note: languages must be enabled in the agent before they can
* be used.
*
*
* string language_code = 3;
*/
java.lang.String getLanguageCode();
/**
*
*
*
* Optional. The language of entity synonyms defined in `entities`. If not
* specified, the agent's default language is used.
* [Many
* languages](https://cloud.google.com/dialogflow-enterprise/docs/reference/language)
* are supported. Note: languages must be enabled in the agent before they can
* be used.
*
*
* string language_code = 3;
*/
com.google.protobuf.ByteString getLanguageCodeBytes();
}