Class PersonSearchResponseSimplePayload
- java.lang.Object
-
- com.qivos.util.rest.common.envelope.Payload<List<T>>
-
- com.qivos.util.rest.common.envelope.SearchPayload<PersonResponseSimple>
-
- com.inteliqua.rest.customer.payload.person.response.PersonSearchResponseSimplePayload
-
public class PersonSearchResponseSimplePayload extends com.qivos.util.rest.common.envelope.SearchPayload<PersonResponseSimple>
Payload for the search response containing simple person data. This class extendsSearchPayloadto hold the search results for simple person data along with pagination details like 'hasMore' and 'totalCount'.- Author:
- nikritikos
-
-
Constructor Summary
Constructors Constructor Description PersonSearchResponseSimplePayload(List<PersonResponseSimple> data, Boolean hasMore, Long totalCount)Constructs a newPersonSearchResponseSimplePayloadwith the specified data, pagination status, and total count of items.
-
-
-
Constructor Detail
-
PersonSearchResponseSimplePayload
public PersonSearchResponseSimplePayload(List<PersonResponseSimple> data, Boolean hasMore, Long totalCount)
Constructs a newPersonSearchResponseSimplePayloadwith 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
-
-