| 1 | <?php |
||
| 9 | class RemittanceInformation |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | private $message; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var CreditorReferenceInformation |
||
| 18 | */ |
||
| 19 | private $creditorReferenceInformation; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return CreditorReferenceInformation |
||
| 23 | */ |
||
| 24 | 1 | public function getCreditorReferenceInformation() |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @param CreditorReferenceInformation $creditorReferenceInformation |
||
| 31 | */ |
||
| 32 | 9 | public function setCreditorReferenceInformation($creditorReferenceInformation) |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | 2 | public function getMessage() |
|
| 44 | |||
| 45 | /** |
||
| 46 | * @param $message |
||
| 47 | */ |
||
| 48 | 9 | public function setMessage($message) |
|
| 52 | |||
| 53 | } |
||
| 54 |