grpc.testing.ByteBufferParams */ class ByteBufferParams extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field int32 req_size = 1; */ protected $req_size = 0; /** * Generated from protobuf field int32 resp_size = 2; */ protected $resp_size = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int $req_size * @type int $resp_size * } */ public function __construct($data = NULL) { \GPBMetadata\Src\Proto\Grpc\Testing\Payloads::initOnce(); parent::__construct($data); } /** * Generated from protobuf field int32 req_size = 1; * @return int */ public function getReqSize() { return $this->req_size; } /** * Generated from protobuf field int32 req_size = 1; * @param int $var * @return $this */ public function setReqSize($var) { GPBUtil::checkInt32($var); $this->req_size = $var; return $this; } /** * Generated from protobuf field int32 resp_size = 2; * @return int */ public function getRespSize() { return $this->resp_size; } /** * Generated from protobuf field int32 resp_size = 2; * @param int $var * @return $this */ public function setRespSize($var) { GPBUtil::checkInt32($var); $this->resp_size = $var; return $this; } }