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

com.slack.api.socket_mode.request.HelloMessage Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.socket_mode.request;

import lombok.Data;

@Data
public class HelloMessage {
    public static final String TYPE = "hello";
    private final String type = TYPE;
    private Integer numConnections;
    private DebugInfo debugInfo;
    private ConnectionInfo connectionInfo;

    @Data
    public static class DebugInfo {
        private String host;
        private Integer buildNumber;
        private Integer approximateConnectionTime;
    }

    @Data
    public static class ConnectionInfo {
        private String appId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy