| 1 | <?php |
||
| 12 | class PaymentEvent |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var DateTime |
||
| 16 | */ |
||
| 17 | protected $created; |
||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | protected $id; |
||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $type; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return DateTime |
||
| 29 | */ |
||
| 30 | public function getCreated() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public function getId() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | public function getType() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @param DateTime $created |
||
| 53 | * @return $this |
||
| 54 | */ |
||
| 55 | public function setCreated(DateTime $created) |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @param string $id |
||
| 64 | * @return $this |
||
| 65 | */ |
||
| 66 | public function setId($id) |
||
| 72 | |||
| 73 | /** |
||
| 74 | * @param string $type |
||
| 75 | * @return $this |
||
| 76 | */ |
||
| 77 | public function setType($type) |
||
| 83 | } |
||
| 84 |