Total Complexity | 7 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | class DiscrepancyResponse extends BaseComponent { |
||
17 | |||
18 | protected $ReferenceID; |
||
19 | protected $ResponseCode; |
||
20 | protected $Description; |
||
21 | |||
22 | function xmlSerialize(Writer $writer) { |
||
23 | $writer->write([ |
||
24 | SchemaNS::CBC . 'ReferenceID' => $this->ReferenceID, |
||
25 | SchemaNS::CBC . 'ResponseCode' => $this->ResponseCode, |
||
26 | SchemaNS::CBC . 'Description' => new Cdata($this->Description) |
||
27 | ]); |
||
28 | } |
||
29 | |||
30 | public function getReferenceID() { |
||
31 | return $this->ReferenceID; |
||
32 | } |
||
33 | |||
34 | public function setReferenceID($ReferenceID) { |
||
37 | } |
||
38 | |||
39 | public function getResponseCode() { |
||
40 | return $this->ResponseCode; |
||
41 | } |
||
42 | |||
43 | public function setResponseCode($ResponseCode) { |
||
44 | $this->ResponseCode = $ResponseCode; |
||
45 | return $this; |
||
46 | } |
||
47 | |||
48 | public function getDescription() { |
||
50 | } |
||
51 | |||
52 | public function setDescription($Description) { |
||
53 | $this->Description = $Description; |
||
58 |