diff options
| author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-07-09 06:10:43 +0530 | 
|---|---|---|
| committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-07-09 06:10:43 +0530 | 
| commit | 908fb4b2b0fd1c31aa8c1cc87f56d490b42aca7a (patch) | |
| tree | 4630365d362426390a4375bf39ea3ff755aa992f /invoice/invoice.go | |
| parent | afe4affa7e543b9a1ddd72efd7e2ab60f8c50317 (diff) | |
added invoice note
Diffstat (limited to 'invoice/invoice.go')
| -rw-r--r-- | invoice/invoice.go | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/invoice/invoice.go b/invoice/invoice.go index 8d808a3..4b93ee4 100644 --- a/invoice/invoice.go +++ b/invoice/invoice.go @@ -62,6 +62,7 @@ type Invoice struct {  	BillingAddress  InvoiceBillingAddress  	ShippingAddress InvoiceShippingAddress  	IsDraft         bool +	Note            string  	Items           []InvoiceItem    // issuer and customer details are stored here  @@ -81,6 +82,5 @@ type Invoice struct {  	CustomerWebsite     string  	// Transporter     Transporter -	// DueDate         string  	// TransactionID   string  }  |