forked from github/dataease
17 lines
326 B
Java
17 lines
326 B
Java
![]() |
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;
|
||
|
}
|
||
|
}
|