package booking import "github.com/rjNemo/rentease/internal/config" type InvoiceLine struct { Name string Quantity int Price string Total string } type PaymentLine struct { Date string Method string Amount string } type Invoice struct { Host config.Host Name string PhoneNumber string CustomersNumber int Platform string ID string From string To string Total string AmountPaid string BalanceDue string Lines []InvoiceLine Payments []PaymentLine }