grpc.testing.StreamingInputCallResponse */ class StreamingInputCallResponse extends \Google\Protobuf\Internal\Message { /** * Aggregated size of payloads received from the client. * * Generated from protobuf field int32 aggregated_payload_size = 1; */ protected $aggregated_payload_size = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int $aggregated_payload_size * Aggregated size of payloads received from the client. * } */ public function __construct($data = NULL) { \GPBMetadata\Src\Proto\Grpc\Testing\Messages::initOnce(); parent::__construct($data); } /** * Aggregated size of payloads received from the client. * * Generated from protobuf field int32 aggregated_payload_size = 1; * @return int */ public function getAggregatedPayloadSize() { return $this->aggregated_payload_size; } /** * Aggregated size of payloads received from the client. * * Generated from protobuf field int32 aggregated_payload_size = 1; * @param int $var * @return $this */ public function setAggregatedPayloadSize($var) { GPBUtil::checkInt32($var); $this->aggregated_payload_size = $var; return $this; } }