for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CultureKings\Afterpay\Model\Merchant;
use DateTime;
/**
* Class PaymentEvent
*
* @package CultureKings\Afterpay\Model\Merchant
*/
class PaymentEvent
{
* @var DateTime
protected $created;
* @var string
protected $id;
protected $type;
* @return DateTime
public function getCreated()
return $this->created;
}
* @return string
public function getId()
return $this->id;
public function getType()
return $this->type;
* @param DateTime $created
* @return $this
public function setCreated(DateTime $created)
$this->created = $created;
return $this;
* @param string $id
public function setId($id)
$this->id = $id;
* @param string $type
public function setType($type)
$this->type = $type;