mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-12 13:46:51 +00:00
37 lines
628 B
Go
37 lines
628 B
Go
package booking
|
|
|
|
type InvoiceLine struct {
|
|
Name string
|
|
Quantity int
|
|
Price string
|
|
Total string
|
|
}
|
|
|
|
type PaymentLine struct {
|
|
Date string
|
|
Method string
|
|
Amount string
|
|
}
|
|
|
|
type Invoice struct {
|
|
Host struct {
|
|
Name string
|
|
Address string
|
|
ZipCode string
|
|
City string
|
|
Phone string
|
|
Email string
|
|
}
|
|
Name string
|
|
PhoneNumber string
|
|
CustomersNumber int
|
|
Platform string
|
|
ID string
|
|
From string
|
|
To string
|
|
Total string
|
|
AmountPaid string
|
|
BalanceDue string
|
|
Lines []InvoiceLine
|
|
Payments []PaymentLine
|
|
}
|