proto.api.OrderTime
*/
class OrderTime extends \Google\Protobuf\Internal\Message
{
/**
* 下单时间 时间戳 秒
*
* Generated from protobuf field int32 ordering_time = 1;
*/
protected $ordering_time = 0;
/**
* 支付/购买时间 时间戳 秒
*
* Generated from protobuf field int32 pay_time = 2;
*/
protected $pay_time = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $ordering_time
* 下单时间 时间戳 秒
* @type int $pay_time
* 支付/购买时间 时间戳 秒
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Api\EntOrder::initOnce();
parent::__construct($data);
}
/**
* 下单时间 时间戳 秒
*
* Generated from protobuf field int32 ordering_time = 1;
* @return int
*/
public function getOrderingTime()
{
return $this->ordering_time;
}
/**
* 下单时间 时间戳 秒
*
* Generated from protobuf field int32 ordering_time = 1;
* @param int $var
* @return $this
*/
public function setOrderingTime($var)
{
GPBUtil::checkInt32($var);
$this->ordering_time = $var;
return $this;
}
/**
* 支付/购买时间 时间戳 秒
*
* Generated from protobuf field int32 pay_time = 2;
* @return int
*/
public function getPayTime()
{
return $this->pay_time;
}
/**
* 支付/购买时间 时间戳 秒
*
* Generated from protobuf field int32 pay_time = 2;
* @param int $var
* @return $this
*/
public function setPayTime($var)
{
GPBUtil::checkInt32($var);
$this->pay_time = $var;
return $this;
}
}