public interface PhoneListEntryI
PhoneListEntryI
object represents a phone entry administered for a customer associated an InteractionI
.Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAreaCode() |
java.lang.String |
getCountryCode() |
boolean |
getDoNotCall()
Gets the 'Do Not Call' status of this number as configured in AACC
|
void |
getDoNotCall(boolean doNotCall) |
java.lang.String |
getId() |
java.lang.String |
getPhoneNumber() |
java.lang.String |
getTimezone() |
boolean |
isDefault() |
void |
setCountryCode(java.lang.String countryCode)
Allows the
UserI processing an InteractionI to modify the country code administered for the customer's
phone entry |
void |
setDefault(boolean setDefault)
Allows the
UserI processing an InteractionI to specify this as the default phone number for the customer. |
void |
setPhoneNumber(java.lang.String phoneNumber)
Allows the
UserI processing an InteractionI to modify the phone number administered for the customer's
phone entry |
void |
setTimezone(java.lang.String timezone)
Allows the
UserI processing an InteractionI to modify the timezone administered for the customer's phone
entry |
java.lang.String getId()
java.lang.String getCountryCode()
java.lang.String getAreaCode()
java.lang.String getPhoneNumber()
java.lang.String getTimezone()
boolean isDefault()
boolean getDoNotCall()
void setCountryCode(java.lang.String countryCode)
UserI
processing an InteractionI
to modify the country code administered for the customer's
phone entrycountryCode
- country code to update the entry withvoid setPhoneNumber(java.lang.String phoneNumber)
UserI
processing an InteractionI
to modify the phone number administered for the customer's
phone entryphoneNumber
- number to update the entry withvoid setTimezone(java.lang.String timezone)
UserI
processing an InteractionI
to modify the timezone administered for the customer's phone
entrytimezone
- timezone to update the entry withvoid setDefault(boolean setDefault)
UserI
processing an InteractionI
to specify this as the default phone number for the customer.setDefault
- true/falsevoid getDoNotCall(boolean doNotCall)