All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.securionpay.response.ListResponse Maven / Gradle / Ivy

The newest version!
package com.securionpay.response;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

public class ListResponse implements Iterable {

	private List list = new ArrayList<>();
	private Boolean hasMore;
	private Integer totalCount;

	public List getList() {
		return list;
	}

	public Boolean getHasMore() {
		return hasMore;
	}

	public Integer getTotalCount() {
		return totalCount;
	}

	@Override
	public Iterator iterator() {
		return list.iterator();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy