Class: Google::Apis::LanguageV1beta1::Features

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

Overview

All available features for sentiment, syntax, and semantic analysis. Setting each one to true will enable that specific analysis for the input.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Features

Returns a new instance of Features.



450
451
452
# File 'lib/google/apis/language_v1beta1/classes.rb', line 450

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

Instance Attribute Details

#extract_document_sentimentBoolean Also known as: extract_document_sentiment?

Extract document-level sentiment. Corresponds to the JSON property extractDocumentSentiment

Returns:

  • (Boolean)


435
436
437
# File 'lib/google/apis/language_v1beta1/classes.rb', line 435

def extract_document_sentiment
  @extract_document_sentiment
end

#extract_entitiesBoolean Also known as: extract_entities?

Extract entities. Corresponds to the JSON property extractEntities

Returns:

  • (Boolean)


441
442
443
# File 'lib/google/apis/language_v1beta1/classes.rb', line 441

def extract_entities
  @extract_entities
end

#extract_syntaxBoolean Also known as: extract_syntax?

Extract syntax information. Corresponds to the JSON property extractSyntax

Returns:

  • (Boolean)


447
448
449
# File 'lib/google/apis/language_v1beta1/classes.rb', line 447

def extract_syntax
  @extract_syntax
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



455
456
457
458
459
# File 'lib/google/apis/language_v1beta1/classes.rb', line 455

def update!(**args)
  @extract_document_sentiment = args[:extract_document_sentiment] if args.key?(:extract_document_sentiment)
  @extract_entities = args[:extract_entities] if args.key?(:extract_entities)
  @extract_syntax = args[:extract_syntax] if args.key?(:extract_syntax)
end