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 | * @var StructuredRemittanceInformation |
||
23 | */ |
||
24 | private $structuredRemittanceInformation; |
||
25 | |||
26 | /** |
||
27 | * @var UnstructuredRemittanceInformation |
||
28 | */ |
||
29 | private $unstructuredRemittanceInformation; |
||
30 | |||
31 | /** |
||
32 | * @param $message |
||
33 | * @return static |
||
34 | */ |
||
35 | public static function fromUnstructured($message) |
||
41 | |||
42 | /** |
||
43 | * @return CreditorReferenceInformation |
||
44 | */ |
||
45 | 1 | public function getCreditorReferenceInformation() |
|
49 | |||
50 | /** |
||
51 | * @param CreditorReferenceInformation $creditorReferenceInformation |
||
52 | */ |
||
53 | 13 | public function setCreditorReferenceInformation($creditorReferenceInformation) |
|
58 | |||
59 | /** |
||
60 | * @return string |
||
61 | */ |
||
62 | 3 | public function getMessage() |
|
66 | |||
67 | /** |
||
68 | * @param string $message |
||
69 | */ |
||
70 | 10 | public function setMessage($message) |
|
74 | |||
75 | /** |
||
76 | * @return StructuredRemittanceInformation |
||
77 | */ |
||
78 | 1 | public function getStructuredRemittanceInformation() |
|
82 | |||
83 | /** |
||
84 | * @param StructuredRemittanceInformation $structuredRemittanceInformation |
||
85 | */ |
||
86 | 13 | public function setStructuredRemittanceInformation( |
|
91 | |||
92 | /** |
||
93 | * @return UnstructuredRemittanceInformation |
||
94 | */ |
||
95 | 1 | public function getUnstructuredRemittanceInformation() |
|
99 | |||
100 | /** |
||
101 | * @param UnstructuredRemittanceInformation $unstructuredRemittanceInformation |
||
102 | */ |
||
103 | 10 | public function setUnstructuredRemittanceInformation( |
|
108 | } |
||
109 |