What is the intended use of AllergyIntoleranceVerificationStatusCodes and AllergyIntoleranceClinicalStatusCodes? #2011
-
Using R4 The I see the enum values have an Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @Sir-Baconn, Thanks for your interest in our SDK. You can use the enum var enteredInErrorCoding = new Coding(
AllergyIntoleranceVerificationStatusCodes.EnteredInError.GetSystem(),
AllergyIntoleranceVerificationStatusCodes.EnteredInError.GetLiteral()
);
var allergyIntolerance = new AllergyIntolerance();
allergyIntolerance.VerificationStatus = new CodeableConcept() { Coding = new List<Coding> { enteredInErrorCoding } }; I hope I gave you enough inspiration to continue. Marco |
Beta Was this translation helpful? Give feedback.
Hi @Sir-Baconn,
Thanks for your interest in our SDK.
You can use the enum
AllergyIntoleranceVerificationStatusCodes
to populate a CodeableConcept:I hope I gave you enough inspiration to continue.
Marco