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

com.github.seratch.jslack.api.methods.response.views.ViewsPushResponse Maven / Gradle / Ivy

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

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

import java.util.List;

@Data
public class ViewsPushResponse implements SlackApiResponse {

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

    private View view;

    private ResponseMetadata responseMetadata;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy