google.cloud.dialogflow.v2.Intent.Message.BasicCard.Button.OpenUriAction
*/
class Intent_Message_BasicCard_Button_OpenUriAction extends \Google\Protobuf\Internal\Message
{
/**
* Required. The HTTP or HTTPS scheme URI.
*
* Generated from protobuf field string uri = 1;
*/
private $uri = '';
public function __construct() {
\GPBMetadata\Google\Cloud\Dialogflow\V2\Intent::initOnce();
parent::__construct();
}
/**
* Required. The HTTP or HTTPS scheme URI.
*
* Generated from protobuf field string uri = 1;
* @return string
*/
public function getUri()
{
return $this->uri;
}
/**
* Required. The HTTP or HTTPS scheme URI.
*
* Generated from protobuf field string uri = 1;
* @param string $var
* @return $this
*/
public function setUri($var)
{
GPBUtil::checkString($var, True);
$this->uri = $var;
return $this;
}
}