Do you have any clue how to create a list of messages in studio ?
Example :
I can define one message that is called DoctorInfoMsg such as
set DoctorInfoMsg= ##class(PKGNotification.InDoctorInfo).%New()
Where PKGNotification.InDoctorInfo is composed of
Property UserName As %String;
Property ListOfPatients As list Of %String;
How to define a list of PKGNotification.InDoctorInfo messages ?
How to get UserName of the first message?