Commit ad6d2144 authored by Andrey Shevchuk's avatar Andrey Shevchuk

fixed voicemail transcription

parent 88b1a472
......@@ -89,8 +89,16 @@ our %out_hash_map = (
"sample" => "https://localhost:10000/asterisk/get_message_from_db.cgi?id=1",
"transform" => "play_url",
"type" => "string"
},
"transcription" => {
"description" => "Voice message text transcription",
"format" => "raw",
"hidden" => 0,
"required" => 0,
"sample" => "Hello",
"transform" => "transcription",
"type" => "string"
}
);
my %in_hash_map = (
......@@ -165,6 +173,15 @@ my %in_hash_map = (
"sample" => "https://localhost:10000/asterisk/get_message_from_db.cgi?id=1",
"transform" => "play_url",
"type" => "string"
},
"transcription" => {
"description" => "Voice message text transcription",
"format" => "raw",
"hidden" => 0,
"required" => 0,
"sample" => "Hello",
"transform" => "transcription",
"type" => "string"
}
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment