Class TransactionResponseSearchPayload
- java.lang.Object
-
- com.qivos.util.rest.common.envelope.Payload<List<T>>
-
- com.qivos.util.rest.common.envelope.SearchPayload<TransactionResponseSimple>
-
- com.inteliqua.rest.transaction.payload.response.basic.TransactionResponseSearchPayload
-
public class TransactionResponseSearchPayload extends com.qivos.util.rest.common.envelope.SearchPayload<TransactionResponseSimple>
Payload for the search response containing simple transaction data. This class extendsSearchPayloadto hold the search results for simple person data along with pagination details like 'hasMore' and 'totalCount'.
-
-
Constructor Summary
Constructors Constructor Description TransactionResponseSearchPayload(List<TransactionResponseSimple> data, Boolean hasMore, Long totalCount)Constructs a newTransactionResponseSearchPayloadwith the specified data, pagination status, and total count of items.
-
-
-
Constructor Detail
-
TransactionResponseSearchPayload
public TransactionResponseSearchPayload(List<TransactionResponseSimple> data, Boolean hasMore, Long totalCount)
Constructs a newTransactionResponseSearchPayloadwith the specified data, pagination status, and total count of items.- Parameters:
data- the list of simple person response datahasMore- indicates whether there are more records availabletotalCount- the total number of records found
-
-