export interface IPpasDistributionInvoice { 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; 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; eic: string; place_id: string; installations_billing_class: string; installations_measurement_type: string; installations_contract_contract_id: string | null; installations_contract_move_in_date: string; installations_contract_move_out_date: string; installations_tdd_class: string; installations_address_street: string; installations_address_house_number: string | null; installations_address_house_org_number: string | null; installations_address_city: string; installations_address_city_part: string; installations_address_post_code: string; installations_address_country: string; installations_address_ruian_id: number; }