Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2NotificationConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2NotificationConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
Defines notification behavior.
Instance Attribute Summary collapse
-
#message_format ⇒ String
Format of message.
-
#topic ⇒ String
Name of the Pub/Sub topic to publish conversation events like CONVERSATION_STARTED as serialized ConversationEvent protos.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2NotificationConfig
constructor
A new instance of GoogleCloudDialogflowV2NotificationConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2NotificationConfig
Returns a new instance of GoogleCloudDialogflowV2NotificationConfig.
14233 14234 14235 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 14233 def initialize(**args) update!(**args) end |
Instance Attribute Details
#message_format ⇒ String
Format of message.
Corresponds to the JSON property messageFormat
14219 14220 14221 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 14219 def @message_format end |
#topic ⇒ String
Name of the Pub/Sub topic to publish conversation events like
CONVERSATION_STARTED as serialized ConversationEvent protos. For telephony
integration to receive notification, make sure either this topic is in the
same project as the conversation or you grant service-@gcp-sa-dialogflow.iam.
gserviceaccount.com
the Dialogflow Service Agent
role in the topic project.
For chat integration to receive notification, make sure API caller has been
granted the Dialogflow Service Agent
role for the topic. Format: projects//
locations//topics/
.
Corresponds to the JSON property topic
14231 14232 14233 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 14231 def topic @topic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14238 14239 14240 14241 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 14238 def update!(**args) @message_format = args[:message_format] if args.key?(:message_format) @topic = args[:topic] if args.key?(:topic) end |