google.cloud.dialogflow.v2.BatchDeleteEntitiesRequest */ class BatchDeleteEntitiesRequest extends \Google\Protobuf\Internal\Message { /** * Required. The name of the entity type to delete entries for. Format: * `projects//agent/entityTypes/`. * * Generated from protobuf field string parent = 1; */ private $parent = ''; /** * 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/`. * * Generated from protobuf field repeated string entity_values = 2; */ private $entity_values; /** * Optional. The language of entity synonyms defined in `entities`. 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. * * Generated from protobuf field string language_code = 3; */ private $language_code = ''; public function __construct() { \GPBMetadata\Google\Cloud\Dialogflow\V2\EntityType::initOnce(); parent::__construct(); } /** * Required. The name of the entity type to delete entries for. Format: * `projects//agent/entityTypes/`. * * Generated from protobuf field string parent = 1; * @return string */ public function getParent() { return $this->parent; } /** * Required. The name of the entity type to delete entries for. Format: * `projects//agent/entityTypes/`. * * Generated from protobuf field string parent = 1; * @param string $var * @return $this */ public function setParent($var) { GPBUtil::checkString($var, True); $this->parent = $var; return $this; } /** * 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/`. * * Generated from protobuf field repeated string entity_values = 2; * @return \Google\Protobuf\Internal\RepeatedField */ public function getEntityValues() { return $this->entity_values; } /** * 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/`. * * Generated from protobuf field repeated string entity_values = 2; * @param string[]|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setEntityValues($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING); $this->entity_values = $arr; return $this; } /** * Optional. The language of entity synonyms defined in `entities`. 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. * * Generated from protobuf field string language_code = 3; * @return string */ public function getLanguageCode() { return $this->language_code; } /** * Optional. The language of entity synonyms defined in `entities`. 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. * * Generated from protobuf field string language_code = 3; * @param string $var * @return $this */ public function setLanguageCode($var) { GPBUtil::checkString($var, True); $this->language_code = $var; return $this; } }