73 lines
2.2 KiB
PHP
73 lines
2.2 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# source: google/cloud/dialogflow/v2/conversation_model.proto
|
|
|
|
namespace Google\Cloud\Dialogflow\V2;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* The request message for
|
|
* [ConversationModels.UndeployConversationModel][google.cloud.dialogflow.v2.ConversationModels.UndeployConversationModel]
|
|
*
|
|
* Generated from protobuf message <code>google.cloud.dialogflow.v2.UndeployConversationModelRequest</code>
|
|
*/
|
|
class UndeployConversationModelRequest extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Required. The conversation model to undeploy. Format:
|
|
* `projects/<Project ID>/conversationModels/<Conversation Model ID>`
|
|
*
|
|
* Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = REQUIRED];</code>
|
|
*/
|
|
protected $name = '';
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type string $name
|
|
* Required. The conversation model to undeploy. Format:
|
|
* `projects/<Project ID>/conversationModels/<Conversation Model ID>`
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\Google\Cloud\Dialogflow\V2\ConversationModel::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Required. The conversation model to undeploy. Format:
|
|
* `projects/<Project ID>/conversationModels/<Conversation Model ID>`
|
|
*
|
|
* Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = REQUIRED];</code>
|
|
* @return string
|
|
*/
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
/**
|
|
* Required. The conversation model to undeploy. Format:
|
|
* `projects/<Project ID>/conversationModels/<Conversation Model ID>`
|
|
*
|
|
* Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = REQUIRED];</code>
|
|
* @param string $var
|
|
* @return $this
|
|
*/
|
|
public function setName($var)
|
|
{
|
|
GPBUtil::checkString($var, True);
|
|
$this->name = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|