Class: Google::Apis::LanguageV1beta2::ClassifyTextRequest

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 document classification request message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClassifyTextRequest

Returns a new instance of ClassifyTextRequest.



407
408
409
# File 'lib/google/apis/language_v1beta2/classes.rb', line 407

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

Instance Attribute Details

#classification_model_optionsGoogle::Apis::LanguageV1beta2::ClassificationModelOptions

Model options available for classification requests. Corresponds to the JSON property classificationModelOptions



399
400
401
# File 'lib/google/apis/language_v1beta2/classes.rb', line 399

def classification_model_options
  @classification_model_options
end

#documentGoogle::Apis::LanguageV1beta2::Document

########################################################## # Represents

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



405
406
407
# File 'lib/google/apis/language_v1beta2/classes.rb', line 405

def document
  @document
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



412
413
414
415
# File 'lib/google/apis/language_v1beta2/classes.rb', line 412

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