Definition: All kinds of technology mediated contact details for a person or organization, including telephone, email, etc.
Requirements: Need to track phone, fax, mobile, sms numbers, email addresses, twitter tags, etc.
10341035103610371038103910401041
* <b>Definition:</b> * An e-mail, phone, website or other contact point to use to resolve issues with message communications. * </p> */ public Source setContact( ContactUseEnum theContactUse, String theValue) { myContact = new ContactDt(theContactUse, theValue); return this; }
10471048104910501051105210531054
* <b>Definition:</b> * An e-mail, phone, website or other contact point to use to resolve issues with message communications. * </p> */ public Source setContact( String theValue) { myContact = new ContactDt(theValue); return this; }
806807808809810811812813814
* <b>Definition:</b> * Contacts for Organization relevant to this conformance statement. The contacts may be a website, email, phone numbers, etc. * </p> */ public ContactDt addTelecom() { ContactDt newType = new ContactDt(); getTelecom().add(newType); return newType; }
840841842843844845846847
*/ public Conformance addTelecom( ContactUseEnum theContactUse, String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theContactUse, theValue)); return this; }
858859860861862863864865
*/ public Conformance addTelecom( String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theValue)); return this; }
548549550551552553554555556
* <b>Definition:</b> * A contact detail for the person, e.g. a telephone number or an email address. * </p> */ public ContactDt addTelecom() { ContactDt newType = new ContactDt(); getTelecom().add(newType); return newType; }
582583584585586587588589
*/ public RelatedPerson addTelecom( ContactUseEnum theContactUse, String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theContactUse, theValue)); return this; }
600601602603604605606607
*/ public RelatedPerson addTelecom( String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theValue)); return this; }
625626627628629630631632633
* <b>Definition:</b> * Contacts of the publisher to assist a user in finding and communicating with the publisher * </p> */ public ContactDt addTelecom() { ContactDt newType = new ContactDt(); getTelecom().add(newType); return newType; }
659660661662663664665666
*/ public ValueSet addTelecom( ContactUseEnum theContactUse, String theValue) { if (myTelecom == null) { myTelecom = new java.util.ArrayList<ContactDt>(); } myTelecom.add(new ContactDt(theContactUse, theValue)); return this; }