class Merriam::Utils::TranslateText
Attributes
detected[RW]
from[RW]
model[RW]
origin[RW]
text[RW]
to[RW]
Public Class Methods
new(options)
click to toggle source
# File lib/merriam/core/translate_text.rb, line 8 def initialize(options) @text = options['text'] @to = options['to'] @origin = options['origin'] @from = options['from'] @model = options['model'] @detected = options['detected'] end