common_pack.MoveStepData
*/
class MoveStepData extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field string m_id = 1;
*/
protected $m_id = '';
/**
* Generated from protobuf field int32 step = 2;
*/
protected $step = 0;
/**
* Generated from protobuf field int32 old_setp = 3;
*/
protected $old_setp = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $m_id
* @type int $step
* @type int $old_setp
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Common::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field string m_id = 1;
* @return string
*/
public function getMId()
{
return $this->m_id;
}
/**
* Generated from protobuf field string m_id = 1;
* @param string $var
* @return $this
*/
public function setMId($var)
{
GPBUtil::checkString($var, True);
$this->m_id = $var;
return $this;
}
/**
* Generated from protobuf field int32 step = 2;
* @return int
*/
public function getStep()
{
return $this->step;
}
/**
* Generated from protobuf field int32 step = 2;
* @param int $var
* @return $this
*/
public function setStep($var)
{
GPBUtil::checkInt32($var);
$this->step = $var;
return $this;
}
/**
* Generated from protobuf field int32 old_setp = 3;
* @return int
*/
public function getOldSetp()
{
return $this->old_setp;
}
/**
* Generated from protobuf field int32 old_setp = 3;
* @param int $var
* @return $this
*/
public function setOldSetp($var)
{
GPBUtil::checkInt32($var);
$this->old_setp = $var;
return $this;
}
}