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

com.github.iamshreeram.plugins.jmeter.slack.SlackActionStyle Maven / Gradle / Ivy

The newest version!
package com.github.iamshreeram.plugins.jmeter.slack;


public enum SlackActionStyle {
	DEFAULT("default"), PRIMARY("primary"), DANGER("danger");

	private String code;

	SlackActionStyle(String code) {
		this.code = code;
	}

	public String getCode() {
		return code;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy