org.knowm.xchange.kucoin.dto.request.PageRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-kucoin Show documentation
Show all versions of xchange-kucoin Show documentation
XChange implementation for the Kucoin Exchange
The newest version!
/** Copyright 2019 Mek Global Limited. */
package org.knowm.xchange.kucoin.dto.request;
import lombok.Data;
/** Created by zicong.lu on 2018/12/14. */
@Data
public class PageRequest {
private int currentPage = 1;
private int pageSize = 10;
}