com.google.cloud.dialogflow.v2.BatchCreateEntitiesRequestOrBuilder 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 BatchCreateEntitiesRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.BatchCreateEntitiesRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. The name of the entity type to create entities in. Format:
* `projects/<Project ID>/agent/entityTypes/<Entity Type ID>`.
*
*
* string parent = 1;
*/
java.lang.String getParent();
/**
*
*
*
* Required. The name of the entity type to create entities in. Format:
* `projects/<Project ID>/agent/entityTypes/<Entity Type ID>`.
*
*
* string parent = 1;
*/
com.google.protobuf.ByteString getParentBytes();
/**
*
*
*
* Required. The entities to create.
*
*
* repeated .google.cloud.dialogflow.v2.EntityType.Entity entities = 2;
*/
java.util.List getEntitiesList();
/**
*
*
*
* Required. The entities to create.
*
*
* repeated .google.cloud.dialogflow.v2.EntityType.Entity entities = 2;
*/
com.google.cloud.dialogflow.v2.EntityType.Entity getEntities(int index);
/**
*
*
*
* Required. The entities to create.
*
*
* repeated .google.cloud.dialogflow.v2.EntityType.Entity entities = 2;
*/
int getEntitiesCount();
/**
*
*
*
* Required. The entities to create.
*
*
* repeated .google.cloud.dialogflow.v2.EntityType.Entity entities = 2;
*/
java.util.List extends com.google.cloud.dialogflow.v2.EntityType.EntityOrBuilder>
getEntitiesOrBuilderList();
/**
*
*
*
* Required. The entities to create.
*
*
* repeated .google.cloud.dialogflow.v2.EntityType.Entity entities = 2;
*/
com.google.cloud.dialogflow.v2.EntityType.EntityOrBuilder getEntitiesOrBuilder(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();
}