Class: TotalVoice::Tts
- Inherits:
-
Object
- Object
- TotalVoice::Tts
- Defined in:
- lib/api/tts.rb
Overview
Inicializa o HTTP client
Constant Summary collapse
- ROTA_TTS =
"/tts"
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
Instance Method Summary collapse
-
#buscar(id) ⇒ json
Busca as informações do registro de TTS.
-
#enviar(numero_destino, mensagem, opcoes = {}) ⇒ json
Enviar TTS.
-
#initialize(client) ⇒ Tts
constructor
A new instance of Tts.
-
#relatorio(data_inicio, data_fim) ⇒ json
Gera relatório de TTS.
Constructor Details
#initialize(client) ⇒ Tts
Returns a new instance of Tts.
10 11 12 |
# File 'lib/api/tts.rb', line 10 def initialize(client) @client = client end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
7 8 9 |
# File 'lib/api/tts.rb', line 7 def client @client end |
Instance Method Details
#buscar(id) ⇒ json
Busca as informações do registro de TTS
37 38 39 |
# File 'lib/api/tts.rb', line 37 def buscar(id) @client.get(Route.new([ROTA_TTS, id.to_s])) end |
#enviar(numero_destino, mensagem, opcoes = {}) ⇒ json
Enviar TTS
22 23 24 25 26 27 28 29 |
# File 'lib/api/tts.rb', line 22 def enviar(numero_destino, mensagem, opcoes = {}) data = { numero_destino: numero_destino, mensagem: mensagem } data.merge!(opcoes) @client.post(Route.new([ROTA_TTS]), data) end |
#relatorio(data_inicio, data_fim) ⇒ json
Gera relatório de TTS
48 49 50 51 52 53 |
# File 'lib/api/tts.rb', line 48 def relatorio(data_inicio, data_fim) @client.get( Route.new([ROTA_TTS, 'relatorio']), Query.new({ 'data_inicio': Time.parse(data_inicio.to_s).utc, 'data_fim': Time.parse(data_fim.to_s).utc }) ) end |