Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2MessageAnnotation

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

Overview

Represents the result of annotation for the message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2MessageAnnotation

Returns a new instance of GoogleCloudDialogflowV2MessageAnnotation.



10029
10030
10031
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10029

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

Instance Attribute Details

#contain_entitiesBoolean Also known as: contain_entities?

Indicates whether the text message contains entities. Corresponds to the JSON property containEntities

Returns:

  • (Boolean)


10019
10020
10021
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10019

def contain_entities
  @contain_entities
end

#partsArray<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2AnnotatedMessagePart>

The collection of annotated message parts ordered by their position in the message. You can recover the annotated message by concatenating [ AnnotatedMessagePart.text]. Corresponds to the JSON property parts



10027
10028
10029
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10027

def parts
  @parts
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10034
10035
10036
10037
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10034

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