for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the slince/youzan-pay package.
*
* (c) Slince <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Slince\YouzanPay\Api;
class Trade
{
/**
* @var int
protected $id;
protected $qrId;
* @var string
protected $status;
* @var \DateTime
protected $created;
* @return int
public function getId()
return $this->id;
}
* @param int $id
* @return Trade
public function setId($id)
$this->id = $id;
return $this;
public function getQrId()
return $this->qrId;
* @param int $qrId
public function setQrId($qrId)
$this->qrId = $qrId;
* @return string
public function getStatus()
return $this->status;
* @param string $status
public function setStatus($status)
$this->status = $status;
* @return \DateTime
public function getCreated()
return $this->created;
* @param \DateTime $created
public function setCreated($created)
$this->created = $created;