propresenter-php/php/generated/Rv/Data/API_v1_Link_Request/Heartbeat.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: proApiV1Link.proto
namespace Rv\Data\API_v1_Link_Request;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>rv.data.API_v1_Link_Request.Heartbeat</code>
*/
class Heartbeat extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>uint32 port = 1;</code>
*/
protected $port = 0;
/**
* Generated from protobuf field <code>string if_modified_since = 2;</code>
*/
protected $if_modified_since = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $port
* @type string $if_modified_since
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProApiV1Link::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>uint32 port = 1;</code>
* @return int
*/
public function getPort()
{
return $this->port;
}
/**
* Generated from protobuf field <code>uint32 port = 1;</code>
* @param int $var
* @return $this
*/
public function setPort($var)
{
GPBUtil::checkUint32($var);
$this->port = $var;
return $this;
}
/**
* Generated from protobuf field <code>string if_modified_since = 2;</code>
* @return string
*/
public function getIfModifiedSince()
{
return $this->if_modified_since;
}
/**
* Generated from protobuf field <code>string if_modified_since = 2;</code>
* @param string $var
* @return $this
*/
public function setIfModifiedSince($var)
{
GPBUtil::checkString($var, True);
$this->if_modified_since = $var;
return $this;
}
}