From 8a713593ee7976cc6668e0b996bd373925eb44fd Mon Sep 17 00:00:00 2001 From: bilalgulzar Date: Mon, 29 Nov 2021 14:19:42 +0100 Subject: [PATCH] add seald_content in encryption field model --- fhir-models/fhir/humanName.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/fhir-models/fhir/humanName.go b/fhir-models/fhir/humanName.go index 6e68cb88..f6ed5c29 100644 --- a/fhir-models/fhir/humanName.go +++ b/fhir-models/fhir/humanName.go @@ -43,7 +43,8 @@ type RecareHumanName struct { } type EncryptedField struct { - IV string `json:"iv,omitempty"` - Content string `json:"content,omitempty"` - Algo string `json:"algo,omitempty"` + IV string `json:"iv,omitempty"` + Content string `json:"content,omitempty"` + Algo string `json:"algo,omitempty"` + SealdContent string `json:"seald_content,omitempty"` }