@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
18 lines • 573 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpMethod = void 0;
/**
* Enum representing HTTP methods used for making web requests.
*/
var HttpMethod;
(function (HttpMethod) {
/**
* The HTTP GET method, used for retrieving data from a server.
*/
HttpMethod["GET"] = "GET";
/**
* The HTTP POST method, used for sending data to a server to create or update resources.
*/
HttpMethod["POST"] = "POST";
})(HttpMethod || (exports.HttpMethod = HttpMethod = {}));
//# sourceMappingURL=HttpMethod.js.map