export interface IPpasInvoiceId { num: string | number; intNum: string; } export interface IPpasInvoiceCustomer { id: string; companyId: string | number; name: string; contractAccountId: string; } export interface IPpasInvoiceFacts { docDate: string; netDate: string; billingTransaction: string; toPayAmount: number; currency: string; priceBrutto: number; } export interface IPpasInvoiceCancellation { isCanceled: boolean; id: IPpasInvoiceId; reason: string; }