Class TelephoneDataResponse
- java.lang.Object
-
- com.inteliqua.rest.customer.payload.telephone.TelephoneData
-
- com.inteliqua.rest.customer.payload.telephone.response.TelephoneDataResponse
-
- All Implemented Interfaces:
com.qivos.util.rest.mappers.APIResponseDTO,com.qivos.util.rest.mappers.APIResponseLevelDTO,Serializable
public class TelephoneDataResponse extends TelephoneData implements com.qivos.util.rest.mappers.APIResponseLevelDTO
Represents the response data for a telephone record. This class extendsTelephoneDataand implementsAPIResponseLevelDTOto include telephone system-specific data such as the unique code and last modification date.- Author:
- nikritikos
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TelephoneDataResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.qivos.util.rest.common.APIResponseLevelgetDetailLevel()Gets the detail level of the API response.DategetLastModificationDate()Gets the last modification date of the telephone data.StringgetSystemCode()Gets the unique telephone system code.voidsetLastModificationDate(Date lastModificationDate)Sets the last modification date of the telephone data.voidsetSystemCode(String systemCode)Sets the unique telephone system code.-
Methods inherited from class com.inteliqua.rest.customer.payload.telephone.TelephoneData
addAttribute, getAttributes, getCountryCode, getIsPrimary, getIsVerified, getTelephoneNumber, getTelephoneType, setCountryCode, setIsPrimary, setIsVerified, setTelephoneNumber, setTelephoneType, toString
-
-
-
-
Method Detail
-
getSystemCode
public String getSystemCode()
Gets the unique telephone system code.- Returns:
- the telephone system code
-
setSystemCode
public void setSystemCode(String systemCode)
Sets the unique telephone system code.- Parameters:
systemCode- the system code to set
-
setLastModificationDate
public void setLastModificationDate(Date lastModificationDate)
Sets the last modification date of the telephone data.- Specified by:
setLastModificationDatein interfacecom.qivos.util.rest.mappers.APIResponseDTO- Parameters:
lastModificationDate- the last modification date to set
-
getLastModificationDate
public Date getLastModificationDate()
Gets the last modification date of the telephone data.- Specified by:
getLastModificationDatein interfacecom.qivos.util.rest.mappers.APIResponseDTO- Returns:
- the last modification date
-
getDetailLevel
public com.qivos.util.rest.common.APIResponseLevel getDetailLevel()
Gets the detail level of the API response.- Specified by:
getDetailLevelin interfacecom.qivos.util.rest.mappers.APIResponseLevelDTO- Returns:
- the detail level, which is SIMPLE in this case
-
-