From 0758bb224e64548c3ae3d4d2e034ae83b691f8af Mon Sep 17 00:00:00 2001 From: Sam Lown Date: Wed, 22 Nov 2023 20:40:32 +0000 Subject: [PATCH] Fixing payee typo --- bill/payment.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bill/payment.go b/bill/payment.go index e643b91d..d9cc9cbd 100644 --- a/bill/payment.go +++ b/bill/payment.go @@ -13,7 +13,7 @@ import ( // Payment contains details as to how the invoice should be paid. type Payment struct { // The party responsible for receiving payment of the invoice, if not the supplier. - Payee *org.Party `json:"payee,omitempty" jsonschema:"title=Payer"` + Payee *org.Party `json:"payee,omitempty" jsonschema:"title=Payee"` // Payment terms or conditions. Terms *pay.Terms `json:"terms,omitempty" jsonschema:"title=Terms"` // Any amounts that have been paid in advance and should be deducted from the amount due.