grpc.testing.Payload
*/
class Payload extends \Google\Protobuf\Internal\Message
{
/**
* The type of data in body.
*
* Generated from protobuf field .grpc.testing.PayloadType type = 1;
*/
protected $type = 0;
/**
* Primary contents of payload.
*
* Generated from protobuf field bytes body = 2;
*/
protected $body = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $type
* The type of data in body.
* @type string $body
* Primary contents of payload.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Src\Proto\Grpc\Testing\Messages::initOnce();
parent::__construct($data);
}
/**
* The type of data in body.
*
* Generated from protobuf field .grpc.testing.PayloadType type = 1;
* @return int
*/
public function getType()
{
return $this->type;
}
/**
* 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;
}
}