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

com.slack.api.methods.response.bots.BotsInfoResponse Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.methods.response.bots;

import com.slack.api.methods.SlackApiTextResponse;
import com.slack.api.model.BotIcons;
import lombok.Data;

import java.util.List;
import java.util.Map;

@Data
public class BotsInfoResponse implements SlackApiTextResponse {

    @Data
    public static class Bot {
        private String id;
        private String appId;
        private String userId;
        private String name;
        private boolean deleted;
        private Integer updated;
        private BotIcons icons;
    }

    private boolean ok;
    private String warning;
    private String error;
    private String needed;
    private String provided;
    private transient Map> httpResponseHeaders;

    private Bot bot;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy