rv.data.API_v1_ResiCapture */ class API_v1_ResiCapture extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field string event_name = 1; */ protected $event_name = ''; /** * Generated from protobuf field string event_description = 2; */ protected $event_description = ''; /** * Generated from protobuf field string destination_group = 3; */ protected $destination_group = ''; /** * Generated from protobuf field string encoding = 4; */ protected $encoding = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $event_name * @type string $event_description * @type string $destination_group * @type string $encoding * } */ public function __construct($data = NULL) { \GPBMetadata\ProApiV1Capture::initOnce(); parent::__construct($data); } /** * Generated from protobuf field string event_name = 1; * @return string */ public function getEventName() { return $this->event_name; } /** * Generated from protobuf field string event_name = 1; * @param string $var * @return $this */ public function setEventName($var) { GPBUtil::checkString($var, True); $this->event_name = $var; return $this; } /** * Generated from protobuf field string event_description = 2; * @return string */ public function getEventDescription() { return $this->event_description; } /** * Generated from protobuf field string event_description = 2; * @param string $var * @return $this */ public function setEventDescription($var) { GPBUtil::checkString($var, True); $this->event_description = $var; return $this; } /** * Generated from protobuf field string destination_group = 3; * @return string */ public function getDestinationGroup() { return $this->destination_group; } /** * Generated from protobuf field string destination_group = 3; * @param string $var * @return $this */ public function setDestinationGroup($var) { GPBUtil::checkString($var, True); $this->destination_group = $var; return $this; } /** * Generated from protobuf field string encoding = 4; * @return string */ public function getEncoding() { return $this->encoding; } /** * Generated from protobuf field string encoding = 4; * @param string $var * @return $this */ public function setEncoding($var) { GPBUtil::checkString($var, True); $this->encoding = $var; return $this; } }