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

com.github.seratch.jslack.api.audit.response.ActionsResponse Maven / Gradle / Ivy

package com.github.seratch.jslack.api.audit.response;

import com.github.seratch.jslack.api.audit.AuditApiResponse;
import lombok.Data;

import java.util.List;

@Data
public class ActionsResponse implements AuditApiResponse {
    private boolean ok;
    private String warning;
    private String error;
    private String needed;
    private String provided;

    private Actions actions;

    @Data
    public static class Actions {
        private List workspaceOrOrg;
        private List user;
        private List file;
        private List channel;
        private List app;
        private List message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy