Class: Google::Apis::LanguageV1beta2::AnalyzeSyntaxResponse
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1beta2::AnalyzeSyntaxResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/language_v1beta2/classes.rb,
generated/google/apis/language_v1beta2/representations.rb,
generated/google/apis/language_v1beta2/representations.rb
Overview
The syntax analysis response message.
Instance Attribute Summary collapse
-
#language ⇒ String
The language of the text, which will be the same as the language specified in the request or, if not specified, the automatically-detected language.
-
#sentences ⇒ Array<Google::Apis::LanguageV1beta2::Sentence>
Sentences in the input document.
-
#tokens ⇒ Array<Google::Apis::LanguageV1beta2::Token>
Tokens, along with their syntactic information, in the input document.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AnalyzeSyntaxResponse
constructor
A new instance of AnalyzeSyntaxResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AnalyzeSyntaxResponse
Returns a new instance of AnalyzeSyntaxResponse
239 240 241 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 239 def initialize(**args) update!(**args) end |
Instance Attribute Details
#language ⇒ String
The language of the text, which will be the same as the language specified
in the request or, if not specified, the automatically-detected language.
See Document.language field for more details.
Corresponds to the JSON property language
227 228 229 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 227 def language @language end |
#sentences ⇒ Array<Google::Apis::LanguageV1beta2::Sentence>
Sentences in the input document.
Corresponds to the JSON property sentences
232 233 234 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 232 def sentences @sentences end |
#tokens ⇒ Array<Google::Apis::LanguageV1beta2::Token>
Tokens, along with their syntactic information, in the input document.
Corresponds to the JSON property tokens
237 238 239 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 237 def tokens @tokens end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
244 245 246 247 248 |
# File 'generated/google/apis/language_v1beta2/classes.rb', line 244 def update!(**args) @language = args[:language] if args.key?(:language) @sentences = args[:sentences] if args.key?(:sentences) @tokens = args[:tokens] if args.key?(:tokens) end |