module Rev

Rev API Ruby SDK

Constants

GLOSSARY_ENTRIES_LIMIT

OrderRequest is used for constructing order 'spec' in consumer code and passing it into. It consists of three main elements: :payment, :transcription_options and :notification. You can also supply reference number and whether standard turnaround time is not required

@note www.rev.com/api/ordersposttranscription, www.rev.com/api/orderspostcaption

GLOSSARY_ENTRY_LENGTH_LIMIT
SPEAKER_ENTRIES_LIMIT
SPEAKER_ENTRY_LENGTH_LIMIT
VERSION

Public Class Methods

method_missing(method, *args, &block) click to toggle source

Delegate to Rev::Api

Calls superclass method
# File lib/rev-api.rb, line 17
def method_missing(method, *args, &block)
  return super unless new.respond_to?(method)
  new.send(method, *args, &block)
end
new(client_api_key, user_api_key, host = Rev::Api::PRODUCTION_HOST) click to toggle source

Alias for Rev::Api.new

@return [Rev::Api]

# File lib/rev-api.rb, line 11
def new(client_api_key, user_api_key, host = Rev::Api::PRODUCTION_HOST)
  Rev::Api.new(client_api_key, user_api_key, host)
end
respond_to?(method, include_private = false) click to toggle source
Calls superclass method
# File lib/rev-api.rb, line 22
def respond_to?(method, include_private = false)
  new.respond_to?(method, include_private) || super(method, include_private)
end