/** * Api Documentation * Api Documentation * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { InvoiceItem } from "./InvoiceItem"; import { Patient } from "./Patient"; export declare class Invoice { constructor(json: JSON | any); admissionDate?: number; creditNote?: boolean; gnotionNihii?: string; hospitalisedPatient?: boolean; ignorePrescriptionDate?: boolean; internshipNihii?: string; invoiceNumber?: number; invoiceRef?: string; ioCode?: string; items?: Array; locationNihii?: string; locationService?: number; patient?: Patient; reason?: Invoice.ReasonEnum; relatedBatchSendNumber?: number; relatedBatchYearMonth?: number; relatedInvoiceIoCode?: string; relatedInvoiceNumber?: number; startOfCoveragePeriod?: number; options?: { [key: string]: string; }; } export declare namespace Invoice { type ReasonEnum = "Chimiotherapy" | "ProfessionalDisease" | "WorkAccident" | "Accident" | "Other"; const ReasonEnum: { Chimiotherapy: ReasonEnum; ProfessionalDisease: ReasonEnum; WorkAccident: ReasonEnum; Accident: ReasonEnum; Other: ReasonEnum; }; }