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

com.lacunasoftware.signer.javaclient.responses.PaginatedSearchResponse Maven / Gradle / Ivy

package com.lacunasoftware.signer.javaclient.responses;

import com.google.gson.annotations.SerializedName;

import java.util.List;

public class PaginatedSearchResponse {

	@SerializedName("items")
	private List items;

	@SerializedName("totalCount")
	private Integer totalCount;

	public List getItems() {
		return items;
	}

	public void setItems(List items) {
		this.items = items;
	}

	public Integer getTotalCount() {
		return totalCount;
	}

	public void setTotalCount(Integer totalCount) {
		this.totalCount = totalCount;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy