We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4d399da + 9a132e9 commit f69fa55Copy full SHA for f69fa55
src/Invoice/InvoiceEntity.php
@@ -134,6 +134,8 @@ class InvoiceEntity
134
135
public $endDate;
136
137
+ public $detailsUrl;
138
+
139
public const FIELD_MAPPING = [
140
'INVOICE_ID' => 'invoiceId',
141
'TYPE' => 'type',
@@ -192,6 +194,7 @@ class InvoiceEntity
192
194
'DOCUMENT_URL' => 'documentUrl',
193
195
'START_DATE' => 'startDate',
196
'END_DATE' => 'endDate',
197
+ 'DETAILS_URL' => 'detailsUrl',
198
];
199
200
public const XML_FIELD_MAPPING = [
@@ -252,6 +255,7 @@ class InvoiceEntity
252
255
'documentUrl' => 'DOCUMENT_URL',
253
256
'startDate' => 'START_DATE',
254
257
'endDate' => 'END_DATE',
258
+ 'detailsUrl' => 'DETAILS_URL',
259
260
261
public function __construct(?\SimpleXMLElement $data = null)
0 commit comments