propresenter-php/php/generated/Rv/Data/CaptureActionResponse/StartResi.php
2026-03-01 16:12:17 +01:00

87 lines
2 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: proCore.proto
namespace Rv\Data\CaptureActionResponse;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.CaptureActionResponse.StartResi</code>
*/
class StartResi extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>string event_name = 1;</code>
*/
protected $event_name = '';
/**
* Generated from protobuf field <code>string event_description = 2;</code>
*/
protected $event_description = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $event_name
* @type string $event_description
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProCore::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>string event_name = 1;</code>
* @return string
*/
public function getEventName()
{
return $this->event_name;
}
/**
* Generated from protobuf field <code>string event_name = 1;</code>
* @param string $var
* @return $this
*/
public function setEventName($var)
{
GPBUtil::checkString($var, True);
$this->event_name = $var;
return $this;
}
/**
* Generated from protobuf field <code>string event_description = 2;</code>
* @return string
*/
public function getEventDescription()
{
return $this->event_description;
}
/**
* Generated from protobuf field <code>string event_description = 2;</code>
* @param string $var
* @return $this
*/
public function setEventDescription($var)
{
GPBUtil::checkString($var, True);
$this->event_description = $var;
return $this;
}
}