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 | * @param $message |
||
23 | * @return static |
||
24 | */ |
||
25 | 8 | public static function fromUnstructured($message) |
|
31 | |||
32 | /** |
||
33 | * @return CreditorReferenceInformation |
||
34 | */ |
||
35 | public function getCreditorReferenceInformation() |
||
39 | |||
40 | /** |
||
41 | * @param CreditorReferenceInformation $creditorReferenceInformation |
||
42 | */ |
||
43 | 3 | public function setCreditorReferenceInformation($creditorReferenceInformation) |
|
48 | |||
49 | /** |
||
50 | * @return string |
||
51 | */ |
||
52 | 3 | public function getMessage() |
|
56 | } |
||
57 |