Class TransactionResponseSimple
- java.lang.Object
-
- com.inteliqua.rest.transaction.payload.response.basic.TransactionBaseResponse
-
- com.inteliqua.rest.transaction.payload.response.basic.TransactionResponseSimple
-
- All Implemented Interfaces:
EliquaAbstractRequestPayload,com.qivos.util.rest.mappers.APIResponseDTO,com.qivos.util.rest.mappers.APIResponseLevelDTO
public class TransactionResponseSimple extends TransactionBaseResponse implements com.qivos.util.rest.mappers.APIResponseLevelDTO
Represents a simplified transaction response with basic transaction information. This class provides a reduced set of transaction details suitable for list views or summary displays. ExtendsTransactionBaseResponseand implementsAPIResponseLevelDTOfor response level identification.
-
-
Constructor Summary
Constructors Constructor Description TransactionResponseSimple()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.qivos.util.rest.common.APIResponseLevelgetDetailLevel()Returns the detail level of this response.DategetLastModificationDate()Gets the last modification date of the transaction.voidsetLastModificationDate(Date date)Sets the last modification date of the transaction.-
Methods inherited from class com.inteliqua.rest.transaction.payload.response.basic.TransactionBaseResponse
addAttribute, addTransactionItem
-
-
-
-
Method Detail
-
getDetailLevel
public com.qivos.util.rest.common.APIResponseLevel getDetailLevel()
Returns the detail level of this response. Always returns SIMPLE to indicate this is a simplified version of the transaction response.- Specified by:
getDetailLevelin interfacecom.qivos.util.rest.mappers.APIResponseLevelDTO- Returns:
- APIResponseLevel.SIMPLE as the detail level
-
getLastModificationDate
public Date getLastModificationDate()
Gets the last modification date of the transaction.- Specified by:
getLastModificationDatein interfacecom.qivos.util.rest.mappers.APIResponseDTO- Returns:
- the last modification date
-
setLastModificationDate
public void setLastModificationDate(Date date)
Sets the last modification date of the transaction.- Specified by:
setLastModificationDatein interfacecom.qivos.util.rest.mappers.APIResponseDTO- Parameters:
date- the date to set as the last modification date
-
-