Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2AnnotatedMessagePart

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 a part of a message possibly annotated with an entity. The part can be an entity or purely a part of the message between two entities or message start/end.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2AnnotatedMessagePart

Returns a new instance of GoogleCloudDialogflowV2AnnotatedMessagePart.



9805
9806
9807
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9805

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

Instance Attribute Details

#entity_typeString

The Dialogflow system entity type of this message part. If this is empty, Dialogflow could not annotate the phrase part with a system entity. Corresponds to the JSON property entityType

Returns:

  • (String)


9790
9791
9792
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9790

def entity_type
  @entity_type
end

#formatted_valueObject

The Dialogflow system entity formatted value of this message part. For example for a system entity of type @sys.unit-currency, this may contain: "amount": 5, "currency": "USD" Corresponds to the JSON property formattedValue

Returns:

  • (Object)


9798
9799
9800
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9798

def formatted_value
  @formatted_value
end

#textString

A part of a message possibly annotated with an entity. Corresponds to the JSON property text

Returns:

  • (String)


9803
9804
9805
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9803

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9810
9811
9812
9813
9814
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9810

def update!(**args)
  @entity_type = args[:entity_type] if args.key?(:entity_type)
  @formatted_value = args[:formatted_value] if args.key?(:formatted_value)
  @text = args[:text] if args.key?(:text)
end