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

com.github.seratch.jslack.api.methods.response.rtm.RTMStartResponse Maven / Gradle / Ivy

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

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

import java.util.List;

/**
 * @see rtm.start
 */
@Data
public class RTMStartResponse implements SlackApiResponse {

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

    private String url;
    private User self;
    private Team team;
    private List users;
    private Prefs prefs;
    private List channels;
    private List groups;
    private List ims;

    @Data
    public static class Prefs {
        // TODO
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy