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

com.slack.api.audit.response.ActionsResponse Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.audit.response;

import com.google.gson.annotations.SerializedName;
import com.slack.api.audit.AuditApiResponse;
import lombok.Data;
import lombok.EqualsAndHashCode;

import java.util.List;

@Data
@EqualsAndHashCode(callSuper = false)
public class ActionsResponse implements AuditApiResponse {
    private transient String rawBody;

    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;
        private List workflowBuilder;
        private List barrier;
        private List huddle;
        private List anomaly;
        @SerializedName("slack_cli")
        private List slackCLI;
        private List subteam;
        private List role;
        private List accountTypeRole;
        private List appApprovalAutomationRule;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy