export interface IPpasCommercialInvoice { id: string; preceding_id?: string; customer_id: string; customer_company_id: string; customer_name: string; customer_contract_account_id: string; customer_address_street: string; customer_address_house_number: string | null; customer_address_house_org_number: string | null; customer_address_city: string; customer_address_city_part: string; customer_address_post_code: string; customer_address_country: string; customer_address_ruian_id: number | null; facts_doc_date: string; facts_net_date: string; facts_billing_transaction: string; facts_to_pay_amount: number; facts_currency: string; facts_price_brutto: number; is_canceled?: boolean; canceled_reason?: string; }