com.global.api.entities.gpApi.PagedResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globalpayments-sdk Show documentation
Show all versions of globalpayments-sdk Show documentation
API for processing payments through Global Payments
package com.global.api.entities.gpApi;
import lombok.Getter;
import lombok.Setter;
import java.util.ArrayList;
import java.util.List;
public class PagedResult {
@Getter @Setter public int totalRecordCount;
@Getter @Setter public int pageSize;
@Getter @Setter public int page;
@Getter @Setter public String Order;
@Getter @Setter public String OrderBy;
@Getter @Setter public List results = new ArrayList();
public void add(T item) {
results.add(item);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy