public interface CustomerDetailsI
CustomerDetailsI
object represents the details of a customer involved in an InteractionI
. The CustomerDetailsI
are received in an InteractionI
notification.Modifier and Type | Method and Description |
---|---|
java.util.List<EmailListEntryI> |
getEmailList()
A list of
EmailListEntryI s associated with this customer |
java.lang.String |
getFirstName()
The customer's first name
|
java.lang.String |
getId()
The ID for this CustomerDetails object
|
java.lang.String |
getLastName()
The customer's surname
|
java.util.List<PhoneListEntryI> |
getPhoneList()
A list of
PhoneListEntryI s associated with this customer |
java.util.List<PostalAddressListEntryI> |
getPostalAddressList()
A list of postal addresses associated with this customer
|
java.lang.String |
getTitle()
The title of the customer
|
java.lang.String getId()
java.lang.String getTitle()
java.lang.String getFirstName()
java.lang.String getLastName()
java.util.List<PhoneListEntryI> getPhoneList()
PhoneListEntryI
s associated with this customerPhoneListEntryI
objects each one representing a phone entry for the customer
or an empty list if no phones are provisionedjava.util.List<EmailListEntryI> getEmailList()
EmailListEntryI
s associated with this customerEmailListEntryI
objects each one representing an email address for the customer
or an empty list if no email addresses are provisionedjava.util.List<PostalAddressListEntryI> getPostalAddressList()
PostalAddressListEntryI
objects each one representing an postal address for the customer
or an empty list if no postal addresses are provisioned