Class: Google::Apis::LanguageV2::ModerateTextRequest

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

Overview

The document moderation request message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ModerateTextRequest

Returns a new instance of ModerateTextRequest.



766
767
768
# File 'lib/google/apis/language_v2/classes.rb', line 766

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

Instance Attribute Details

#documentGoogle::Apis::LanguageV2::Document

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



759
760
761
# File 'lib/google/apis/language_v2/classes.rb', line 759

def document
  @document
end

#model_versionString

Optional. The model version to use for ModerateText. Corresponds to the JSON property modelVersion

Returns:

  • (String)


764
765
766
# File 'lib/google/apis/language_v2/classes.rb', line 764

def model_version
  @model_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



771
772
773
774
# File 'lib/google/apis/language_v2/classes.rb', line 771

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