Class EmailDataResponse
- java.lang.Object
-
- com.inteliqua.rest.customer.payload.email.EmailData
-
- com.inteliqua.rest.customer.payload.email.response.EmailDataResponse
-
- All Implemented Interfaces:
com.qivos.util.rest.mappers.APIResponseDTO,Serializable
public class EmailDataResponse extends EmailData implements com.qivos.util.rest.mappers.APIResponseDTO
Represents the response for email data of a customer, extending theEmailDataclass and implementingAPIResponseDTO. This class includes additional information such as the unique system code and the last modification date for the email data. It is used to encapsulate the response data for email-related details of a customer.- Author:
- nikritikos
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EmailDataResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DategetLastModificationDate()Gets the date and time when the email data was last modified.StringgetSystemCode()Gets the unique system code for the email.voidsetLastModificationDate(Date lastModificationDate)Sets the date and time when the email data was last modified.voidsetSystemCode(String systemCode)Sets the unique system code for the email.-
Methods inherited from class com.inteliqua.rest.customer.payload.email.EmailData
addAtrribute, getAttributes, getEmailAddress, getIsPrimary, setEmailAddress, setIsPrimary, toString
-
-
-
-
Method Detail
-
getSystemCode
public String getSystemCode()
Gets the unique system code for the email.- Returns:
- the system code
-
setSystemCode
public void setSystemCode(String systemCode)
Sets the unique system code for the email.- Parameters:
systemCode- the system code to set
-
getLastModificationDate
public Date getLastModificationDate()
Gets the date and time when the email data was last modified.- Specified by:
getLastModificationDatein interfacecom.qivos.util.rest.mappers.APIResponseDTO- Returns:
- the last modification date
-
setLastModificationDate
public void setLastModificationDate(Date lastModificationDate)
Sets the date and time when the email data was last modified.- Specified by:
setLastModificationDatein interfacecom.qivos.util.rest.mappers.APIResponseDTO- Parameters:
lastModificationDate- the date to set
-
-