org.knowm.xchange.lgo.dto.WithCursor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-lgo Show documentation
Show all versions of xchange-lgo Show documentation
XChange implementation for LGO
package org.knowm.xchange.lgo.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
public class WithCursor {
private final T result;
private final String nextPage;
public WithCursor(@JsonProperty("result") T result, @JsonProperty("next_page") String nextPage) {
this.result = result;
this.nextPage = nextPage;
}
public T getResult() {
return result;
}
public String getNextPage() {
return nextPage;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy