Skip to content

Commit 822e083

Browse files
authored
Merge pull request #54 from devarun/bugfix/invoice-entity
Add missing 'REFERENCE_INVOICE_ID' mapping to 'InvoiceEntity' class
2 parents 2d5534e + 97a1390 commit 822e083

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Invoice/InvoiceEntity.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ class InvoiceEntity
7979

8080
public $invoiceTitle;
8181

82+
public $referenceInvoiceId;
83+
8284
public $introText;
8385

8486
public $note;
@@ -167,6 +169,7 @@ class InvoiceEntity
167169
'SUBSCRIPTION_ID' => 'subscriptionId',
168170
'INVOICE_NUMBER' => 'invoiceNumber',
169171
'INVOICE_TITLE' => 'invoiceTitle',
172+
'REFERENCED_INVOICE_ID' => 'referenceInvoiceId',
170173
'INTROTEXT' => 'introText',
171174
'NOTE' => 'note',
172175
'PAID_DATE' => 'paidDate',
@@ -226,6 +229,7 @@ class InvoiceEntity
226229
'subscriptionId' => 'SUBSCRIPTION_ID',
227230
'invoiceNumber' => 'INVOICE_NUMBER',
228231
'invoiceTitle' => 'INVOICE_TITLE',
232+
'referenceInvoiceId' => 'REFERENCE_INVOICE_ID',
229233
'introText' => 'INTROTEXT',
230234
'note' => 'NOTE',
231235
'paidDate' => 'PAID_DATE',

0 commit comments

Comments
 (0)