Examples of HumanName


Examples of uk.nhs.interoperability.payloads.fhir.commontypes.HumanName

    resource.addTelephoneNumber(new Telecom()
                  .setTelecom("mailto:mark.smith@emailfree.co.uk")
                  .setTelecomType(FHIRTelecomUseType.home.code));
   
    // Patient
    resource.addPatientName(new HumanName()
                  .setTitle("Mr")
                  .setGivenName("Mark")
                  .setFamilyName("Smith"));
    resource.setSex(Sex._1);
    resource.setBirthTime(new DateValue("19490101"));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.