/* Options: Date: 2026-02-14 11:38:51 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.co.za //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SearchClaim.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { /** * Claim */ @Route(Path="/claim/search", Verbs="POST") @Api(Description="Claim") @ApiResponse(Description="Claim search results", StatusCode=200) public static class SearchClaim implements IReturn>> { @ApiMember(ParameterType="model") public SearchClaimQuery query = null; public SearchClaimQuery getQuery() { return query; } public SearchClaim setQuery(SearchClaimQuery value) { this.query = value; return this; } private static Object responseType = new TypeToken>>(){}.getType(); public Object getResponseType() { return responseType; } } public static class PagedQueryResult { public Long startIndex = null; public Long endIndex = null; public Integer numberOfRecordsReturned = null; public Integer totalNumberOfPages = null; public Long totalNumberOfRecords = null; public ArrayList> results = new ArrayList>(); public Long getStartIndex() { return startIndex; } public PagedQueryResult setStartIndex(Long value) { this.startIndex = value; return this; } public Long getEndIndex() { return endIndex; } public PagedQueryResult setEndIndex(Long value) { this.endIndex = value; return this; } public Integer getNumberOfRecordsReturned() { return numberOfRecordsReturned; } public PagedQueryResult setNumberOfRecordsReturned(Integer value) { this.numberOfRecordsReturned = value; return this; } public Integer getTotalNumberOfPages() { return totalNumberOfPages; } public PagedQueryResult setTotalNumberOfPages(Integer value) { this.totalNumberOfPages = value; return this; } public Long getTotalNumberOfRecords() { return totalNumberOfRecords; } public PagedQueryResult setTotalNumberOfRecords(Long value) { this.totalNumberOfRecords = value; return this; } public ArrayList> getResults() { return results; } public PagedQueryResult setResults(ArrayList> value) { this.results = value; return this; } } public static class SearchClaimQuery { public String receiverGln = null; public Date fromDate = null; public Date toDate = null; public String claimsNotificationTypeCode = null; public String claimsNotificationIdentification = null; public _Buyer buyer = null; public _ClaimNotification claimNotification = null; public _Invoice invoice = null; public Boolean excludeLinkedToCreditNote = null; public String senderGln = null; public ArrayList partnerGln = new ArrayList(); public Integer requestedPage = null; public Integer numberOfRecordsPerPage = null; public String getReceiverGln() { return receiverGln; } public SearchClaimQuery setReceiverGln(String value) { this.receiverGln = value; return this; } public Date getFromDate() { return fromDate; } public SearchClaimQuery setFromDate(Date value) { this.fromDate = value; return this; } public Date getToDate() { return toDate; } public SearchClaimQuery setToDate(Date value) { this.toDate = value; return this; } public String getClaimsNotificationTypeCode() { return claimsNotificationTypeCode; } public SearchClaimQuery setClaimsNotificationTypeCode(String value) { this.claimsNotificationTypeCode = value; return this; } public String getClaimsNotificationIdentification() { return claimsNotificationIdentification; } public SearchClaimQuery setClaimsNotificationIdentification(String value) { this.claimsNotificationIdentification = value; return this; } public _Buyer getBuyer() { return buyer; } public SearchClaimQuery setBuyer(_Buyer value) { this.buyer = value; return this; } public _ClaimNotification getClaimNotification() { return claimNotification; } public SearchClaimQuery setClaimNotification(_ClaimNotification value) { this.claimNotification = value; return this; } public _Invoice getInvoice() { return invoice; } public SearchClaimQuery setInvoice(_Invoice value) { this.invoice = value; return this; } public Boolean isExcludeLinkedToCreditNote() { return excludeLinkedToCreditNote; } public SearchClaimQuery setExcludeLinkedToCreditNote(Boolean value) { this.excludeLinkedToCreditNote = value; return this; } public String getSenderGln() { return senderGln; } public SearchClaimQuery setSenderGln(String value) { this.senderGln = value; return this; } public ArrayList getPartnerGln() { return partnerGln; } public SearchClaimQuery setPartnerGln(ArrayList value) { this.partnerGln = value; return this; } public Integer getRequestedPage() { return requestedPage; } public SearchClaimQuery setRequestedPage(Integer value) { this.requestedPage = value; return this; } public Integer getNumberOfRecordsPerPage() { return numberOfRecordsPerPage; } public SearchClaimQuery setNumberOfRecordsPerPage(Integer value) { this.numberOfRecordsPerPage = value; return this; } } public static class _Buyer implements IBuyer { public String gln = null; public String getGln() { return gln; } public _Buyer setGln(String value) { this.gln = value; return this; } } public static class _ClaimNotification implements IClaimNotification { public String entityIdentification = null; public String getEntityIdentification() { return entityIdentification; } public _ClaimNotification setEntityIdentification(String value) { this.entityIdentification = value; return this; } } public static class _Invoice implements IInvoice { public String entityIdentification = null; public String getEntityIdentification() { return entityIdentification; } public _Invoice setEntityIdentification(String value) { this.entityIdentification = value; return this; } } public static interface IBuyer { public String gln = null; } public static interface IClaimNotification { public String entityIdentification = null; } public static interface IInvoice { public String entityIdentification = null; } }