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

net.gpedro.integrations.slack.SlackActionStyle Maven / Gradle / Ivy

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