Class: Google::Apis::LanguageV1::AnalyzeSyntaxRequest

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

Overview

The syntax analysis request message.

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) ⇒ AnalyzeSyntaxRequest

Returns a new instance of AnalyzeSyntaxRequest.



206
207
208
# File 'generated/google/apis/language_v1/classes.rb', line 206

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

Instance Attribute Details

#documentGoogle::Apis::LanguageV1::Document

##########################################################

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



199
200
201
# File 'generated/google/apis/language_v1/classes.rb', line 199

def document
  @document
end

#encoding_typeString

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

Returns:

  • (String)


204
205
206
# File 'generated/google/apis/language_v1/classes.rb', line 204

def encoding_type
  @encoding_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



211
212
213
214
# File 'generated/google/apis/language_v1/classes.rb', line 211

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