Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2AnnotatedMessagePart

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



6883
6884
6885
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 6883

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)


6868
6869
6870
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 6868

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)


6876
6877
6878
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 6876

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)


6881
6882
6883
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 6881

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6888
6889
6890
6891
6892
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 6888

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