voice.resetVoiceFilter - GiGAGenie-ServiceSDK/UserGuide GitHub Wiki

gigagenie.voice.resetVoiceFilter

API ์„ค๋ช…

  • ์Œ์„ฑ ํ•„ํ„ฐ ์‚ญ์ œ API
  • ์Œ์„ฑ ํ•„ํ„ฐ ์„ค์ •๋ฅผ ์ดˆ๊ธฐํ™”
  • ๊ถŒํ•œ์„ ๊ฐ€์ง„ appid๋งŒ ํ˜ธ์ถœ ๊ฐ€๋Šฅ

API ๊ตฌ์กฐ

  • gigagenie.voice.resetVoiceFilter
  • options
    • null
  • result_cd
    • 200: ์„ฑ๊ณต
  • extra
    • null

์‚ฌ์šฉ ์˜ˆ์‹œ

// 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) {});