Class: Google::Apis::TranslateV2::TranslateTextRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/translate_v2/classes.rb,
generated/google/apis/translate_v2/representations.rb,
generated/google/apis/translate_v2/representations.rb

Overview

The main translation request message for the Cloud Translation API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TranslateTextRequest

Returns a new instance of TranslateTextRequest



236
237
238
# File 'generated/google/apis/translate_v2/classes.rb', line 236

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#formatString

The format of the source text, in either HTML (default) or plain-text. A value of "html" indicates HTML and a value of "text" indicates plain-text. Corresponds to the JSON property format

Returns:

  • (String)


214
215
216
# File 'generated/google/apis/translate_v2/classes.rb', line 214

def format
  @format
end

#modelString

The model type requested for this translation. Valid values are listed in public documentation. Corresponds to the JSON property model

Returns:

  • (String)


228
229
230
# File 'generated/google/apis/translate_v2/classes.rb', line 228

def model
  @model
end

#qArray<String>

The input text to translate. Repeat this parameter to perform translation operations on multiple text inputs. Corresponds to the JSON property q

Returns:

  • (Array<String>)


208
209
210
# File 'generated/google/apis/translate_v2/classes.rb', line 208

def q
  @q
end

#sourceString

The language of the source text, set to one of the language codes listed in Language Support. If the source language is not specified, the API will attempt to identify the source language automatically and return it within the response. Corresponds to the JSON property source

Returns:

  • (String)


222
223
224
# File 'generated/google/apis/translate_v2/classes.rb', line 222

def source
  @source
end

#targetString

The language to use for translation of the input text, set to one of the language codes listed in Language Support. Corresponds to the JSON property target

Returns:

  • (String)


234
235
236
# File 'generated/google/apis/translate_v2/classes.rb', line 234

def target
  @target
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



241
242
243
244
245
246
247
# File 'generated/google/apis/translate_v2/classes.rb', line 241

def update!(**args)
  @q = args[:q] if args.key?(:q)
  @format = args[:format] if args.key?(:format)
  @source = args[:source] if args.key?(:source)
  @model = args[:model] if args.key?(:model)
  @target = args[:target] if args.key?(:target)
end