Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AnnotatedMessagePart

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/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) ⇒ GoogleCloudDialogflowV2beta1AnnotatedMessagePart

Returns a new instance of GoogleCloudDialogflowV2beta1AnnotatedMessagePart.



10632
10633
10634
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10632

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

Instance Attribute Details

#entity_typeString

Optional. 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)


10617
10618
10619
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10617

def entity_type
  @entity_type
end

#formatted_valueObject

Optional. 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)


10625
10626
10627
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10625

def formatted_value
  @formatted_value
end

#textString

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

Returns:

  • (String)


10630
10631
10632
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10630

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10637
10638
10639
10640
10641
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10637

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