59 lines
1.3 KiB
PHP
59 lines
1.3 KiB
PHP
|
<?php
|
||
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
||
|
# source: resources/proto/pinger.proto
|
||
|
|
||
|
namespace App\Services\gRPC\Pinger;
|
||
|
|
||
|
use Google\Protobuf\Internal\GPBType;
|
||
|
use Google\Protobuf\Internal\RepeatedField;
|
||
|
use Google\Protobuf\Internal\GPBUtil;
|
||
|
|
||
|
/**
|
||
|
* Generated from protobuf message <code>pinger.PingResponse</code>
|
||
|
*/
|
||
|
class PingResponse extends \Google\Protobuf\Internal\Message
|
||
|
{
|
||
|
/**
|
||
|
* Generated from protobuf field <code>int32 status_code = 1;</code>
|
||
|
*/
|
||
|
protected $status_code = 0;
|
||
|
|
||
|
/**
|
||
|
* Constructor.
|
||
|
*
|
||
|
* @param array $data {
|
||
|
* Optional. Data for populating the Message object.
|
||
|
*
|
||
|
* @type int $status_code
|
||
|
* }
|
||
|
*/
|
||
|
public function __construct($data = NULL) {
|
||
|
\App\Services\gRPC\GPBMetadata\Pinger::initOnce();
|
||
|
parent::__construct($data);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Generated from protobuf field <code>int32 status_code = 1;</code>
|
||
|
* @return int
|
||
|
*/
|
||
|
public function getStatusCode()
|
||
|
{
|
||
|
return $this->status_code;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Generated from protobuf field <code>int32 status_code = 1;</code>
|
||
|
* @param int $var
|
||
|
* @return $this
|
||
|
*/
|
||
|
public function setStatusCode($var)
|
||
|
{
|
||
|
GPBUtil::checkInt32($var);
|
||
|
$this->status_code = $var;
|
||
|
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|