We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f3d4b8 commit a77f19cCopy full SHA for a77f19c
src/Invoice/InvoiceEntity.php
@@ -136,6 +136,8 @@ class InvoiceEntity
136
137
public $detailsUrl;
138
139
+ public $status;
140
+
141
public const FIELD_MAPPING = [
142
'INVOICE_ID' => 'invoiceId',
143
'TYPE' => 'type',
@@ -195,6 +197,7 @@ class InvoiceEntity
195
197
'START_DATE' => 'startDate',
196
198
'END_DATE' => 'endDate',
199
'DETAILS_URL' => 'detailsUrl',
200
+ 'STATUS' => 'status',
201
];
202
203
public const XML_FIELD_MAPPING = [
@@ -256,6 +259,7 @@ class InvoiceEntity
256
259
'startDate' => 'START_DATE',
257
260
'endDate' => 'END_DATE',
258
261
'detailsUrl' => 'DETAILS_URL',
262
+ 'status' => 'STATUS',
263
264
265
public function __construct(?\SimpleXMLElement $data = null)
0 commit comments