laravel-template/app/Services/gRPC/Pinger/PingResponse.php
2023-11-02 21:03:39 +08:00

63 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 App\Services\gRPC\GPBMetadata\Pinger;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\Internal\Message;
/**
* Generated from protobuf message <code>pinger.PingResponse</code>
*/
class PingResponse extends 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)
{
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;
}
}