tools.samt.api.transports.http.HttpMethod.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of public-api Show documentation
Show all versions of public-api Show documentation
Public API for creating custom SAMT plugins.
The newest version!
package tools.samt.api.transports.http
/** HTTP Method is used for a given operation */
enum class HttpMethod {
/** HTTP GET */
Get,
/** HTTP POST */
Post,
/** HTTP PUT */
Put,
/** HTTP DELETE */
Delete,
/** HTTP PATCH */
Patch,
}