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

com.cloudconvert.dto.response.Pageable Maven / Gradle / Ivy

Go to download

CloudConvert is an online file converter API - more than 200 different audio, video, document, ebook, archive, image, spreadsheet and presentation formats supported.

There is a newer version: 1.2.1
Show newest version
package com.cloudconvert.dto.response;

import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.Accessors;

import java.util.List;

@Getter
@Setter
@Accessors(chain = true)
@ToString
@EqualsAndHashCode
public class Pageable {

    private List data;
    private Links links;
    private Meta meta;


    @Getter
    @Setter
    @Accessors(chain = true)
    @ToString
    @EqualsAndHashCode
    public static class Links {

        private String first;
        private String last;
        private String prev;
        private String next;
    }


    @Getter
    @Setter
    @Accessors(chain = true)
    @ToString
    @EqualsAndHashCode
    public static class Meta {

        private Integer currentPage;
        private Integer from;
        private Integer to;
        private String path;
        private Integer perPage;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy