net.gpedro.integrations.slack.SlackActionStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slack-webhook Show documentation
Show all versions of slack-webhook Show documentation
Slack WebHook Integration for Java
The newest version!
package net.gpedro.integrations.slack;
/**
* @author Galimov Ruslan
*/
public enum SlackActionStyle {
DEFAULT("default"), PRIMARY("primary"), DANGER("danger");
private String code;
SlackActionStyle(String code) {
this.code = code;
}
public String getCode() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy