google.cloud.dialogflow.v2.UpdateContextRequest
*/
class UpdateContextRequest extends \Google\Protobuf\Internal\Message
{
/**
* Required. The context to update.
*
* Generated from protobuf field .google.cloud.dialogflow.v2.Context context = 1;
*/
private $context = null;
/**
* Optional. The mask to control which fields get updated.
*
* Generated from protobuf field .google.protobuf.FieldMask update_mask = 2;
*/
private $update_mask = null;
public function __construct() {
\GPBMetadata\Google\Cloud\Dialogflow\V2\Context::initOnce();
parent::__construct();
}
/**
* Required. The context to update.
*
* Generated from protobuf field .google.cloud.dialogflow.v2.Context context = 1;
* @return \Google\Cloud\Dialogflow\V2\Context
*/
public function getContext()
{
return $this->context;
}
/**
* Required. The context to update.
*
* Generated from protobuf field .google.cloud.dialogflow.v2.Context context = 1;
* @param \Google\Cloud\Dialogflow\V2\Context $var
* @return $this
*/
public function setContext($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Dialogflow\V2\Context::class);
$this->context = $var;
return $this;
}
/**
* Optional. The mask to control which fields get updated.
*
* Generated from protobuf field .google.protobuf.FieldMask update_mask = 2;
* @return \Google\Protobuf\FieldMask
*/
public function getUpdateMask()
{
return $this->update_mask;
}
/**
* Optional. The mask to control which fields get updated.
*
* Generated from protobuf field .google.protobuf.FieldMask update_mask = 2;
* @param \Google\Protobuf\FieldMask $var
* @return $this
*/
public function setUpdateMask($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\FieldMask::class);
$this->update_mask = $var;
return $this;
}
}