@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
22 lines • 594 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RecordingFormat = void 0;
/**
* Enum representing different recording formats for the Record NCCO action.
*/
var RecordingFormat;
(function (RecordingFormat) {
/**
* MP3 audio format.
*/
RecordingFormat["MP3"] = "mp3";
/**
* WAV audio format.
*/
RecordingFormat["WAV"] = "wav";
/**
* OGG audio format.
*/
RecordingFormat["OGG"] = "ogg";
})(RecordingFormat || (exports.RecordingFormat = RecordingFormat = {}));
//# sourceMappingURL=RecordingFormat.js.map