Class: Google::Apis::TranslateV2::DetectLanguageRequest
- Inherits:
-
Object
- Object
- Google::Apis::TranslateV2::DetectLanguageRequest
- 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 request message for language detection.
Instance Attribute Summary collapse
-
#q ⇒ Array<String>
The input text upon which to perform language detection.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DetectLanguageRequest
constructor
A new instance of DetectLanguageRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DetectLanguageRequest
Returns a new instance of DetectLanguageRequest
35 36 37 |
# File 'generated/google/apis/translate_v2/classes.rb', line 35 def initialize(**args) update!(**args) end |
Instance Attribute Details
#q ⇒ Array<String>
The input text upon which to perform language detection. Repeat this
parameter to perform language detection on multiple text inputs.
Corresponds to the JSON property q
33 34 35 |
# File 'generated/google/apis/translate_v2/classes.rb', line 33 def q @q end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
40 41 42 |
# File 'generated/google/apis/translate_v2/classes.rb', line 40 def update!(**args) @q = args[:q] if args.key?(:q) end |