com.notronix.etsy.impl.EtsyPageableResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JEtsy Show documentation
Show all versions of JEtsy Show documentation
A Java implementation of a Java version of the Etsy API
package com.notronix.etsy.impl;
import com.notronix.etsy.api.PageableResponse;
import java.util.List;
public class EtsyPageableResponse implements PageableResponse
{
private Long count;
private List results;
@Override
public Long getCount() {
return count;
}
public void setCount(Long count) {
this.count = count;
}
@Override
public List getResults() {
return results;
}
public void setResults(List results) {
this.results = results;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy