Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2Message
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2Message
- 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 message posted into a conversation.
Instance Attribute Summary collapse
-
#content ⇒ String
Required.
-
#create_time ⇒ String
Output only.
-
#language_code ⇒ String
Optional.
-
#message_annotation ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2MessageAnnotation
Represents the result of annotation for the message.
-
#name ⇒ String
Optional.
-
#participant ⇒ String
Output only.
-
#participant_role ⇒ String
Output only.
-
#send_time ⇒ String
Optional.
-
#sentiment_analysis ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SentimentAnalysisResult
The result of sentiment analysis.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2Message
constructor
A new instance of GoogleCloudDialogflowV2Message.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2Message
Returns a new instance of GoogleCloudDialogflowV2Message.
10297 10298 10299 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10297 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content ⇒ String
Required. The message content.
Corresponds to the JSON property content
10246 10247 10248 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10246 def content @content end |
#create_time ⇒ String
Output only. The time when the message was created in Contact Center AI.
Corresponds to the JSON property createTime
10251 10252 10253 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10251 def create_time @create_time end |
#language_code ⇒ String
Optional. The message language. This should be a BCP-47 language tag. Example: "en-US".
Corresponds to the JSON property languageCode
10257 10258 10259 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10257 def language_code @language_code end |
#message_annotation ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2MessageAnnotation
Represents the result of annotation for the message.
Corresponds to the JSON property messageAnnotation
10262 10263 10264 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10262 def @message_annotation end |
#name ⇒ String
Optional. The unique identifier of the message. Format: projects//locations//
conversations//messages/
.
Corresponds to the JSON property name
10268 10269 10270 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10268 def name @name end |
#participant ⇒ String
Output only. The participant that sends this message.
Corresponds to the JSON property participant
10273 10274 10275 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10273 def participant @participant end |
#participant_role ⇒ String
Output only. The role of the participant.
Corresponds to the JSON property participantRole
10278 10279 10280 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10278 def participant_role @participant_role end |
#send_time ⇒ String
Optional. The time when the message was sent.
Corresponds to the JSON property sendTime
10283 10284 10285 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10283 def send_time @send_time end |
#sentiment_analysis ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2SentimentAnalysisResult
The result of sentiment analysis. Sentiment analysis inspects user input and
identifies the prevailing subjective opinion, especially to determine a user's
attitude as positive, negative, or neutral. For Participants.DetectIntent, it
needs to be configured in DetectIntentRequest.query_params. For Participants.
StreamingDetectIntent, it needs to be configured in
StreamingDetectIntentRequest.query_params. And for Participants.AnalyzeContent
and Participants.StreamingAnalyzeContent, it needs to be configured in
ConversationProfile.human_agent_assistant_config
Corresponds to the JSON property sentimentAnalysis
10295 10296 10297 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10295 def sentiment_analysis @sentiment_analysis end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10302 def update!(**args) @content = args[:content] if args.key?(:content) @create_time = args[:create_time] if args.key?(:create_time) @language_code = args[:language_code] if args.key?(:language_code) @message_annotation = args[:message_annotation] if args.key?(:message_annotation) @name = args[:name] if args.key?(:name) @participant = args[:participant] if args.key?(:participant) @participant_role = args[:participant_role] if args.key?(:participant_role) @send_time = args[:send_time] if args.key?(:send_time) @sentiment_analysis = args[:sentiment_analysis] if args.key?(:sentiment_analysis) end |