1<?php 2# Generated by the protocol buffer compiler. DO NOT EDIT! 3# source: src/proto/grpc/testing/control.proto 4 5namespace Grpc\Testing; 6 7use Google\Protobuf\Internal\GPBType; 8use Google\Protobuf\Internal\RepeatedField; 9use Google\Protobuf\Internal\GPBUtil; 10 11/** 12 * Request current stats 13 * 14 * Generated from protobuf message <code>grpc.testing.Mark</code> 15 */ 16class Mark extends \Google\Protobuf\Internal\Message 17{ 18 /** 19 * if true, the stats will be reset after taking their snapshot. 20 * 21 * Generated from protobuf field <code>bool reset = 1;</code> 22 */ 23 protected $reset = false; 24 25 /** 26 * Constructor. 27 * 28 * @param array $data { 29 * Optional. Data for populating the Message object. 30 * 31 * @type bool $reset 32 * if true, the stats will be reset after taking their snapshot. 33 * } 34 */ 35 public function __construct($data = NULL) { 36 \GPBMetadata\Src\Proto\Grpc\Testing\Control::initOnce(); 37 parent::__construct($data); 38 } 39 40 /** 41 * if true, the stats will be reset after taking their snapshot. 42 * 43 * Generated from protobuf field <code>bool reset = 1;</code> 44 * @return bool 45 */ 46 public function getReset() 47 { 48 return $this->reset; 49 } 50 51 /** 52 * if true, the stats will be reset after taking their snapshot. 53 * 54 * Generated from protobuf field <code>bool reset = 1;</code> 55 * @param bool $var 56 * @return $this 57 */ 58 public function setReset($var) 59 { 60 GPBUtil::checkBool($var); 61 $this->reset = $var; 62 63 return $this; 64 } 65 66} 67 68