87 lines
1.8 KiB
PHP
87 lines
1.8 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: registration.proto
|
|
|
|
namespace Registration\Core;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>registration.core.Seats</code>
|
|
*/
|
|
class Seats extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>int32 basic = 1;</code>
|
|
*/
|
|
protected $basic = 0;
|
|
/**
|
|
* Generated from protobuf field <code>int32 advanced = 2;</code>
|
|
*/
|
|
protected $advanced = 0;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type int $basic
|
|
* @type int $advanced
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\Registration::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 basic = 1;</code>
|
|
* @return int
|
|
*/
|
|
public function getBasic()
|
|
{
|
|
return $this->basic;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 basic = 1;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setBasic($var)
|
|
{
|
|
GPBUtil::checkInt32($var);
|
|
$this->basic = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 advanced = 2;</code>
|
|
* @return int
|
|
*/
|
|
public function getAdvanced()
|
|
{
|
|
return $this->advanced;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 advanced = 2;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setAdvanced($var)
|
|
{
|
|
GPBUtil::checkInt32($var);
|
|
$this->advanced = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|