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

com.xeiam.xchange.mexbt.dto.MeXBTInsPaginationRequest Maven / Gradle / Ivy

The newest version!
package com.xeiam.xchange.mexbt.dto;

import com.xeiam.xchange.mexbt.service.MeXBTDigest;

import si.mazi.rescu.SynchronizedValueFactory;

public class MeXBTInsPaginationRequest extends MeXBTInsRequest {

  private final long startIndex;
  private final int count;

  public MeXBTInsPaginationRequest(String apiKey, SynchronizedValueFactory nonceFactory, MeXBTDigest meXBTDigest, String ins, long startIndex,
      int count) {
    super(apiKey, nonceFactory, meXBTDigest, ins);
    this.startIndex = startIndex;
    this.count = count;
  }

  public long getStartIndex() {
    return startIndex;
  }

  public int getCount() {
    return count;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy