Method: AzureSTT::Session#get_transcription

Defined in:
lib/azure_stt/session.rb

#get_transcription(id) ⇒ Models::Transcription

Get a transcription identified by an id.



58
59
60
61
# File 'lib/azure_stt/session.rb', line 58

def get_transcription(id)
  transcription_hash = client.get_transcription(id)
  build_transcription_from_hash(transcription_hash)
end