This repository has been archived by the owner on Sep 13, 2023. It is now read-only.
forked from b12consulting/icc-api
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ad icapacity dtos + extra token request api
- Loading branch information
Showing
6 changed files
with
108 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/** | ||
* iCure Data Stack API Documentation | ||
* The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2. | ||
* | ||
* OpenAPI spec version: v1 | ||
* | ||
* | ||
* 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 { Address } from './Address' | ||
import { HealthcareParty } from './HealthcareParty' | ||
import { Service } from './Service' | ||
|
||
export class IncapacityExportInfo { | ||
constructor(json: JSON | any) { | ||
Object.assign(this as IncapacityExportInfo, json) | ||
} | ||
|
||
recipient?: HealthcareParty | ||
comment?: string | ||
incapacityId?: string | ||
notificationDate?: number | ||
retraction?: boolean | ||
dataset?: string | ||
transactionType?: string | ||
incapacityreason?: string | ||
beginmoment?: number | ||
endmoment?: number | ||
outofhomeallowed?: boolean | ||
incapWork?: boolean | ||
incapSchool?: boolean | ||
incapSwim?: boolean | ||
incapSchoolsports?: boolean | ||
incapHeavyphysicalactivity?: boolean | ||
diagnoseServices?: Array<Service> | ||
jobstatus?: string | ||
job?: string | ||
occupationalDiseaseDeclDate?: number | ||
accidentDate?: number | ||
expectedbirthgivingDate?: number | ||
maternityleaveBegin?: number | ||
maternityleaveEnd?: number | ||
hospitalisationBegin?: number | ||
hospitalisationEnd?: number | ||
hospital?: HealthcareParty | ||
contactPersonTel?: string | ||
recoveryAddress?: Address | ||
foreignStayBegin?: number | ||
foreignStayEnd?: number | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/** | ||
* iCure Data Stack API Documentation | ||
* The iCure Data Stack Application API is the native interface to iCure. This version is obsolete, please use v2. | ||
* | ||
* OpenAPI spec version: v1 | ||
* | ||
* | ||
* 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. | ||
*/ | ||
|
||
export class TokenWithGroup { | ||
constructor(json: JSON | any) { | ||
Object.assign(this as TokenWithGroup, json) | ||
} | ||
|
||
token?: string | ||
groupId?: string | ||
groupName?: string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters