voice.resetVoiceFilter - GiGAGenie-ServiceSDK/UserGuide GitHub Wiki
gigagenie.voice.resetVoiceFilter
API ์ค๋ช
- ์์ฑ ํํฐ ์ญ์ API
- ์์ฑ ํํฐ ์ค์ ๋ฅผ ์ด๊ธฐํ
- ๊ถํ์ ๊ฐ์ง appid๋ง ํธ์ถ ๊ฐ๋ฅ
API ๊ตฌ์กฐ
- gigagenie.voice.resetVoiceFilter
options
result_cd
extra
์ฌ์ฉ ์์
// callback
var options = {};
gigagenie.voice.resetVoiceFilter(options, function (result_cd, result_msg, extra) {
if (result_cd === 200) {
console.log("Reset Keyword");
};
});
// promise
var options = {};
gigagenie.voice.resetVoiceFilter(options).then(function (extra) {
console.log("Reset Keyword");
}).catch(function (result_cd, result_msg, extra) {});