2023-01-27 03:22:44 -08:00
|
|
|
import type { IDataObject } from 'n8n-workflow';
|
2020-07-12 09:12:32 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export interface ILineItem {
|
2020-07-12 09:12:32 -07:00
|
|
|
Description?: string;
|
|
|
|
Quantity?: string;
|
|
|
|
UnitAmount?: string;
|
|
|
|
ItemCode?: string;
|
|
|
|
AccountCode?: string;
|
|
|
|
LineItemID?: string;
|
|
|
|
TaxType?: string;
|
|
|
|
TaxAmount?: string;
|
|
|
|
LineAmount?: string;
|
|
|
|
DiscountRate?: string;
|
|
|
|
Tracking?: IDataObject[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IInvoice extends ITenantId {
|
|
|
|
Type?: string;
|
|
|
|
LineItems?: ILineItem[];
|
|
|
|
Contact?: IDataObject;
|
|
|
|
Date?: string;
|
|
|
|
DueDate?: string;
|
2022-09-20 06:33:29 -07:00
|
|
|
LineAmountTypes?: string;
|
2020-07-12 09:12:32 -07:00
|
|
|
InvoiceNumber?: string;
|
|
|
|
Reference?: string;
|
|
|
|
BrandingThemeID?: string;
|
|
|
|
Url?: string;
|
|
|
|
CurrencyCode?: string;
|
|
|
|
CurrencyRate?: string;
|
|
|
|
Status?: string;
|
|
|
|
SentToContact?: boolean;
|
|
|
|
ExpectedPaymentDate?: string;
|
|
|
|
PlannedPaymentDate?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ITenantId {
|
|
|
|
organizationId?: string;
|
|
|
|
}
|