Class TelephoneModificationRequest
- java.lang.Object
-
- com.inteliqua.rest.customer.payload.telephone.request.TelephoneDataUpdateRequest
-
- com.inteliqua.rest.customer.payload.telephone.request.TelephoneModificationRequest
-
- All Implemented Interfaces:
ModificationRequest,Serializable
public class TelephoneModificationRequest extends TelephoneDataUpdateRequest implements ModificationRequest, Serializable
Represents a request to modify telephone data, either by updating or deleting.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TelephoneModificationRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ModificationTypegetAction()Gets the type of modification to be performed.StringgetSystemCode()Gets the system code (QCCode) that identifies the specific system or collection being modified.voidsetAction(ModificationType action)voidsetSystemCode(String systemCode)StringtoString()-
Methods inherited from class com.inteliqua.rest.customer.payload.telephone.request.TelephoneDataUpdateRequest
getAttributes, getCountryCode, getIsPrimary, getTelephoneNumber, getTelephoneType, setCountryCode, setIsPrimary, setTelephoneNumber, setTelephoneType
-
-
-
-
Method Detail
-
getSystemCode
public String getSystemCode()
Description copied from interface:ModificationRequestGets the system code (QCCode) that identifies the specific system or collection being modified.- Specified by:
getSystemCodein interfaceModificationRequest- Returns:
- The system code associated with the modification request.
-
setSystemCode
public void setSystemCode(String systemCode)
-
getAction
public ModificationType getAction()
Description copied from interface:ModificationRequestGets the type of modification to be performed.The modification action could be an add, update, or delete, which is represented by the
ModificationTypeenum. This action dictates the nature of the update to be applied.- Specified by:
getActionin interfaceModificationRequest- Returns:
- The
ModificationTypethat defines the action to be performed.
-
setAction
public void setAction(ModificationType action)
-
toString
public String toString()
- Overrides:
toStringin classTelephoneDataUpdateRequest
-
-