com.cloudconvert.resource.params.Pagination Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudconvert-java Show documentation
Show all versions of cloudconvert-java Show documentation
CloudConvert is an online file converter API - more than 200 different audio, video, document, ebook, archive, image, spreadsheet and presentation formats supported.
package com.cloudconvert.resource.params;
import lombok.Getter;
@Getter
public class Pagination {
private final int perPage;
private final int page;
public Pagination(final int perPage, final int page) {
this.perPage = perPage;
this.page = page;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy