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

com.stratumn.sdk.model.trace.PaginationInfo Maven / Gradle / Ivy

There is a newer version: 0.0.8
Show newest version
package com.stratumn.sdk.model.trace;

public class PaginationInfo {

  int first;
  String after;
  int last;
  String before;

  public void setForward(int first, String after) {
    this.first = first;
    this.after = after;
  }

  public void setBackward(int last, String before) {
    this.last = last;
    this.before = before;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy