bc-checkout-sdk
Version:
BetterCommerce's Checkout NodeJS SDK enables BC client applications to integrate with Checkout merchant API system. It publishes an interface to interact with [Checkout API](https://api-reference.checkout.com/#operation/getPaymentDetails/) endpoints.
20 lines (19 loc) • 522 B
TypeScript
/**
* Enum representing HTTP request methods.
*
* @enum {string}
* @ordinal {string} POST - HTTP POST method.
* @ordinal {string} GET - HTTP GET method.
* @ordinal {string} HEAD - HTTP HEAD method.
* @ordinal {string} PUT - HTTP PUT method.
* @ordinal {string} PATCH - HTTP PATCH method.
* @ordinal {string} DELETE - HTTP DELETE method.
*/
export declare enum RequestMethod {
POST = "POST",
GET = "GET",
HEAD = "HEAD",
PUT = "PUT",
PATCH = "PATCH",
DELETE = "DELETE"
}