Class: Google::Apis::TranslateV3::TranslateTextResponse
- Inherits:
-
Object
- Object
- Google::Apis::TranslateV3::TranslateTextResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/translate_v3/classes.rb,
generated/google/apis/translate_v3/representations.rb,
generated/google/apis/translate_v3/representations.rb
Instance Attribute Summary collapse
-
#glossary_translations ⇒ Array<Google::Apis::TranslateV3::Translation>
Text translation responses if a glossary is provided in the request.
-
#translations ⇒ Array<Google::Apis::TranslateV3::Translation>
Text translation responses with no glossary applied.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TranslateTextResponse
constructor
A new instance of TranslateTextResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TranslateTextResponse
Returns a new instance of TranslateTextResponse.
866 867 868 |
# File 'generated/google/apis/translate_v3/classes.rb', line 866 def initialize(**args) update!(**args) end |
Instance Attribute Details
#glossary_translations ⇒ Array<Google::Apis::TranslateV3::Translation>
Text translation responses if a glossary is provided in the request.
This can be the same as
translations if no terms apply.
This field has the same length as
contents.
Corresponds to the JSON property glossaryTranslations
857 858 859 |
# File 'generated/google/apis/translate_v3/classes.rb', line 857 def glossary_translations @glossary_translations end |
#translations ⇒ Array<Google::Apis::TranslateV3::Translation>
Text translation responses with no glossary applied.
This field has the same length as
contents.
Corresponds to the JSON property translations
864 865 866 |
# File 'generated/google/apis/translate_v3/classes.rb', line 864 def translations @translations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
871 872 873 874 |
# File 'generated/google/apis/translate_v3/classes.rb', line 871 def update!(**args) @glossary_translations = args[:glossary_translations] if args.key?(:glossary_translations) @translations = args[:translations] if args.key?(:translations) end |