Commit a87287c2 authored by Andrey Shevchuk's avatar Andrey Shevchuk

fixed voicemail transcription

parent 51ff8111
......@@ -89,6 +89,15 @@ 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"
}
);
......@@ -165,6 +174,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