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.



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

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



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

def document
  @document
end

#model_versionString

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

Returns:

  • (String)


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

def model_version
  @model_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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