dataease-dm/backend/src/main/java/io/dataease/commons/constants/PostmanRequestBodyMode.java

17 lines
326 B
Java
Raw Normal View History

2021-02-20 10:07:25 +08:00
package io.dataease.commons.constants;
public enum PostmanRequestBodyMode {
RAW("raw"), FORM_DATA("formdata"), URLENCODED("urlencoded"), FILE("file");
private String value;
PostmanRequestBodyMode(String value) {
this.value = value;
}
public String value() {
return this.value;
}
}