diff --git a/invoice.go b/invoice.go index a7607e5..d802347 100644 --- a/invoice.go +++ b/invoice.go @@ -102,6 +102,7 @@ type InvoiceListInput struct { ExternalCustomerID string `json:"external_customer_id,omitempty"` Status InvoiceStatus `json:"status,omitempty"` PaymentStatus InvoicePaymentStatus `json:"payment_status,omitempty"` + PaymentOverdue bool `json:"payment_overdue,omitempty"` } type InvoiceCreditItem struct { @@ -149,6 +150,7 @@ type Invoice struct { IssuingDate string `json:"issuing_date,omitempty"` PaymentDisputeLostAt time.Time `json:"payment_dispute_lost_at,omitempty"` PaymentDueDate string `json:"payment_due_date,omitempty"` + PaymentOverdue bool `json:"payment_overdue,omitempty"` InvoiceType InvoiceType `json:"invoice_type,omitempty"` Status InvoiceStatus `json:"status,omitempty"`