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

com.github.seratch.jslack.api.methods.response.chat.ChatPostMessageResponse Maven / Gradle / Ivy

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

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

import java.util.List;

@Data
public class ChatPostMessageResponse implements SlackApiResponse {

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

    private ResponseMetadata responseMetadata;

    @Data
    public static class ResponseMetadata {
        private List messages;
    }

    private String channel;
    private String ts;
    private Message message;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy