com.slack.api.audit.response.ActionsResponse Maven / Gradle / Ivy
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;
@Deprecated // when an error is returned, it will be an exception instead
private boolean ok = true;
@Deprecated // when an error is returned, it will be an exception instead
private String warning;
@Deprecated // when an error is returned, it will be an exception instead
private String error;
@Deprecated // when an error is returned, it will be an exception instead
private String needed;
@Deprecated // when an error is returned, it will be an exception instead
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;
private List workflowV2;
private List canvas;
private List function;
private List salesElevate;
private List nativeDlp;
private List template;
private List list;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy