@icure/api 8.4.8 → 8.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -63,6 +63,9 @@ export declare class InvoicingCode {
|
|
|
63
63
|
insuranceJustification?: number;
|
|
64
64
|
cancelPatientInterventionReason?: number;
|
|
65
65
|
status?: number;
|
|
66
|
+
options?: {
|
|
67
|
+
[key: string]: string;
|
|
68
|
+
};
|
|
66
69
|
/**
|
|
67
70
|
* The base64 encoded data of this object, formatted as JSON and encrypted in AES using the random master key from encryptionKeys.
|
|
68
71
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InvoicingCode.js","sourceRoot":"","sources":["../../../icc-api/model/InvoicingCode.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,MAAa,aAAa;IACxB,YAAY,IAAgB;QAC1B,MAAM,CAAC,MAAM,CAAC,IAAqB,EAAE,IAAI,CAAC,CAAA;IAC5C,CAAC;
|
|
1
|
+
{"version":3,"file":"InvoicingCode.js","sourceRoot":"","sources":["../../../icc-api/model/InvoicingCode.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,MAAa,aAAa;IACxB,YAAY,IAAgB;QAC1B,MAAM,CAAC,MAAM,CAAC,IAAqB,EAAE,IAAI,CAAC,CAAA;IAC5C,CAAC;CA2DF;AA9DD,sCA8DC;AACD,WAAiB,aAAa;IAEf,6BAAe,GAAG;QAC7B,IAAI,EAAE,MAAyB;QAC/B,KAAK,EAAE,OAA0B;QACjC,SAAS,EAAE,WAA8B;QACzC,UAAU,EAAE,YAA+B;QAC3C,SAAS,EAAE,WAA8B;QACzC,MAAM,EAAE,QAA2B;QACnC,OAAO,EAAE,SAA4B;QACrC,KAAK,EAAE,OAA0B;KAClC,CAAA;AACH,CAAC,EAZgB,aAAa,6BAAb,aAAa,QAY7B","sourcesContent":["/**\n * iCure Data Stack API Documentation\n * The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2.\n *\n * OpenAPI spec version: v1\n *\n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\n\nexport class InvoicingCode {\n constructor(json: JSON | any) {\n Object.assign(this as InvoicingCode, json)\n }\n\n id?: string\n dateCode?: number\n logicalId?: string\n label?: string\n userId?: string\n contactId?: string\n serviceId?: string\n tarificationId?: string\n code?: string\n paymentType?: InvoicingCode.PaymentTypeEnum\n paid?: number\n totalAmount?: number\n reimbursement?: number\n patientIntervention?: number\n doctorSupplement?: number\n conventionAmount?: number\n productLabel?: string\n vat?: number\n error?: string\n contract?: string\n contractDate?: number\n units?: number\n side?: number\n timeOfDay?: number\n eidReadingHour?: number\n eidReadingValue?: string\n override3rdPayerCode?: number\n override3rdPayerReason?: string\n transplantationCode?: number\n prescriberNorm?: number\n percentNorm?: number\n prescriberNihii?: string\n relatedCode?: string\n prescriptionDate?: number\n derogationMaxNumber?: number\n prescriberSsin?: string\n prescriberLastName?: string\n prescriberFirstName?: string\n prescriberCdHcParty?: string\n locationNihii?: string\n locationCdHcParty?: string\n locationService?: number\n admissionDate?: number\n canceled?: boolean\n accepted?: boolean\n pending?: boolean\n resent?: boolean\n archived?: boolean\n lost?: boolean\n insuranceJustification?: number\n cancelPatientInterventionReason?: number\n status?: number\n options?: { [key: string]: string }\n /**\n * The base64 encoded data of this object, formatted as JSON and encrypted in AES using the random master key from encryptionKeys.\n */\n encryptedSelf?: string\n}\nexport namespace InvoicingCode {\n export type PaymentTypeEnum = 'cash' | 'wired' | 'insurance' | 'creditcard' | 'debitcard' | 'paypal' | 'bitcoin' | 'other'\n export const PaymentTypeEnum = {\n Cash: 'cash' as PaymentTypeEnum,\n Wired: 'wired' as PaymentTypeEnum,\n Insurance: 'insurance' as PaymentTypeEnum,\n Creditcard: 'creditcard' as PaymentTypeEnum,\n Debitcard: 'debitcard' as PaymentTypeEnum,\n Paypal: 'paypal' as PaymentTypeEnum,\n Bitcoin: 'bitcoin' as PaymentTypeEnum,\n Other: 'other' as PaymentTypeEnum,\n }\n}\n"]}
|