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

org.knowm.xchange.lgo.dto.WithCursor Maven / Gradle / Ivy

There is a newer version: 5.2.1
Show newest version
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