Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1CreateMessageRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1CreateMessageRequest
- 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
The request message to create one Message. Currently it is only used in BatchCreateMessagesRequest.
Instance Attribute Summary collapse
-
#message ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Message
Represents a message posted into a conversation.
-
#parent ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1CreateMessageRequest
constructor
A new instance of GoogleCloudDialogflowV2beta1CreateMessageRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1CreateMessageRequest
Returns a new instance of GoogleCloudDialogflowV2beta1CreateMessageRequest.
12001 12002 12003 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 12001 def initialize(**args) update!(**args) end |
Instance Attribute Details
#message ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Message
Represents a message posted into a conversation.
Corresponds to the JSON property message
11993 11994 11995 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11993 def @message end |
#parent ⇒ String
Required. Resource identifier of the conversation to create message. Format:
projects//locations//conversations/
.
Corresponds to the JSON property parent
11999 12000 12001 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11999 def parent @parent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12006 12007 12008 12009 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 12006 def update!(**args) @message = args[:message] if args.key?(:message) @parent = args[:parent] if args.key?(:parent) end |