Method: AzureSTT::Client#get_transcription_files

Defined in:
lib/azure_stt/client.rb

#get_transcription_files(id) ⇒ Array[Hash]

Get an array containing the files for a given transcription

Parameters:

  • id (Integer)

    The identifier of the transcription

Returns:

  • (Array[Hash])

    Array of the files of a transcription

See Also:



100
101
102
103
104
# File 'lib/azure_stt/client.rb', line 100

def get_transcription_files(id)
  results = get("/transcriptions/#{id}/files")

  results.parsed_response['values']
end