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

tools.samt.api.transports.http.HttpMethod.kt Maven / Gradle / Ivy

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,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy