We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71d6717 commit eb6f4f3Copy full SHA for eb6f4f3
src/In.ProjectEKA.HipService/User/UserController.cs
@@ -59,6 +59,13 @@ public async Task OnAuthConfirmFor(JObject response)
59
$"Id: {authOnConfirmResponse.Auth.Patient.Id}, "+
60
$"Birth Year: {authOnConfirmResponse.Auth.Patient.YearOfBirth}, "+
61
$"Gender: {authOnConfirmResponse.Auth.Patient.Gender}, ");
62
+ if (authOnConfirmResponse.Auth.Identifier != null)
63
+ {
64
+ foreach (var identifier in authOnConfirmResponse.Auth.Identifier)
65
66
+ Log.Information($"Identifier type: {identifier.Type} , Identifier value: {identifier.Value}");
67
+ }
68
69
if (authOnConfirmResponse.Auth.Patient.Address != null)
70
{
71
Log.Information("Patient Address Details: "+
0 commit comments