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

com.github.seratch.jslack.api.model.SearchResult Maven / Gradle / Ivy

The newest version!
package com.github.seratch.jslack.api.model;

import lombok.Data;

import java.util.List;

@Data
public class SearchResult {
    private Integer total;
    private Pagination pagination;
    private Paging paging;
    private List matches;
    private List refinements; // not sure the type yet

    @Data
    public static class Pagination {
        private Integer totalCount;
        private Integer page;
        private Integer perPage;
        private Integer pageCount;
        private Integer first;
        private Integer last;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy