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

141 lines
3.3 KiB
PHP

<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# NO CHECKED-IN PROTOBUF GENCODE
# source: proApiV1Capture.proto
namespace Rv\Data;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.API_v1_ResiCapture</code>
*/
class API_v1_ResiCapture 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 = '';
/**
* Generated from protobuf field <code>string destination_group = 3;</code>
*/
protected $destination_group = '';
/**
* Generated from protobuf field <code>string encoding = 4;</code>
*/
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 <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;
}
/**
* Generated from protobuf field <code>string destination_group = 3;</code>
* @return string
*/
public function getDestinationGroup()
{
return $this->destination_group;
}
/**
* Generated from protobuf field <code>string destination_group = 3;</code>
* @param string $var
* @return $this
*/
public function setDestinationGroup($var)
{
GPBUtil::checkString($var, True);
$this->destination_group = $var;
return $this;
}
/**
* Generated from protobuf field <code>string encoding = 4;</code>
* @return string
*/
public function getEncoding()
{
return $this->encoding;
}
/**
* Generated from protobuf field <code>string encoding = 4;</code>
* @param string $var
* @return $this
*/
public function setEncoding($var)
{
GPBUtil::checkString($var, True);
$this->encoding = $var;
return $this;
}
}