Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2022-06-11 18:08:23 -07:00
parent 7c4321306a
commit 73cb3ff917
6 changed files with 23 additions and 15 deletions

View File

@ -25,3 +25,5 @@ class Invoice:
id: Union[Unset, str] = UNSET
invoice_pdf: Union[Unset, str] = UNSET
invoice_url: Union[Unset, str] = UNSET
from ..models.invoice_line_item import InvoiceLineItem
lines: Union[Unset, List[InvoiceLineItem]] = UNSET