Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
/**
* AMPL GUI Services
* This is the client-facing middleware service for the AMPL GUI Project
*
* OpenAPI spec version: 0.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 { AllergyReaction } from './allergyReaction';
import { Comment } from './comment';
import { Facility } from './facility';
import { Signature } from './signature';
export interface Allergy {
patientId?: string;
facility?: Facility;
verified?: string;
verifierSig?: Signature;
gmrAllergy?: string;
gmrAllergySource?: string;
causativeAgent?: string;
category?: string;
/**
* active | unconfirmed | confirmed | inactive | resolved | refuted | entered-in-error
*/
status?: string;
ingredients?: Array<string>;
drugClass?: Array<string>;
observedHistorical?: string;
comments?: Array<Comment>;
originatorSig?: Signature;
allergyAssessment?: string;
reactions?: Array<AllergyReaction>;
}