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

com.github.seratch.jslack.api.methods.response.search.SearchAllResponse Maven / Gradle / Ivy

package com.github.seratch.jslack.api.methods.response.search;

import com.github.seratch.jslack.api.methods.SlackApiResponse;
import com.github.seratch.jslack.api.model.SearchResult;
import lombok.Data;

import java.util.List;

@Data
public class SearchAllResponse implements SlackApiResponse {

    private boolean ok;
    private String warning;
    private String error;
    private String needed;
    private String provided;

    private String query;
    private SearchResult messages;
    private SearchResult files;
    private Posts posts;

    @Data
    public static class Posts {
        private Integer total;
        private List matches;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy