Class: Google::Apis::LanguageV1beta2::AnalyzeSyntaxRequest

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

Overview

The syntax analysis request message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AnalyzeSyntaxRequest

Returns a new instance of AnalyzeSyntaxRequest.



203
204
205
# File 'lib/google/apis/language_v1beta2/classes.rb', line 203

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

Instance Attribute Details

#documentGoogle::Apis::LanguageV1beta2::Document

Represents the input to API methods. Corresponds to the JSON property document



196
197
198
# File 'lib/google/apis/language_v1beta2/classes.rb', line 196

def document
  @document
end

#encoding_typeString

The encoding type used by the API to calculate offsets. Corresponds to the JSON property encodingType

Returns:

  • (String)


201
202
203
# File 'lib/google/apis/language_v1beta2/classes.rb', line 201

def encoding_type
  @encoding_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



208
209
210
211
# File 'lib/google/apis/language_v1beta2/classes.rb', line 208

def update!(**args)
  @document = args[:document] if args.key?(:document)
  @encoding_type = args[:encoding_type] if args.key?(:encoding_type)
end