grpc.testing.Payload
*/
class Payload extends \Google\Protobuf\Internal\Message
{
/**
* DEPRECATED, don't use. To be removed shortly.
* The type of data in body.
*
* Generated from protobuf field .grpc.testing.PayloadType type = 1;
*/
private $type = 0;
/**
* Primary contents of payload.
*
* Generated from protobuf field bytes body = 2;
*/
private $body = '';
public function __construct() {
\GPBMetadata\Src\Proto\Grpc\Testing\Messages::initOnce();
parent::__construct();
}
/**
* DEPRECATED, don't use. To be removed shortly.
* The type of data in body.
*
* Generated from protobuf field .grpc.testing.PayloadType type = 1;
* @return int
*/
public function getType()
{
return $this->type;
}
/**
* DEPRECATED, don't use. To be removed shortly.
* The type of data in body.
*
* Generated from protobuf field .grpc.testing.PayloadType type = 1;
* @param int $var
* @return $this
*/
public function setType($var)
{
GPBUtil::checkEnum($var, \Grpc\Testing\PayloadType::class);
$this->type = $var;
return $this;
}
/**
* Primary contents of payload.
*
* Generated from protobuf field bytes body = 2;
* @return string
*/
public function getBody()
{
return $this->body;
}
/**
* Primary contents of payload.
*
* Generated from protobuf field bytes body = 2;
* @param string $var
* @return $this
*/
public function setBody($var)
{
GPBUtil::checkString($var, False);
$this->body = $var;
return $this;
}
}