This repository was archived by the owner on Sep 16, 2023. It is now read-only.
File tree 4 files changed +26
-3
lines changed
proto-google-cloud-dialogflow-cx-v3/src/main
java/com/google/cloud/dialogflow/cx/v3
proto/google/cloud/dialogflow/cx/v3
4 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 24
24
* <pre>
25
25
* Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
26
26
* Settings exposed at lower level overrides the settings exposed at higher
27
- * level.
27
+ * level. Overriding occurs at the sub-setting level. For example, the
28
+ * playback_interruption_settings at fulfillment level only overrides the
29
+ * playback_interruption_settings at the agent level, leaving other settings
30
+ * at the agent level unchanged.
31
+ * DTMF settings does not override each other. DTMF settings set at different
32
+ * levels define DTMF detections running in parallel.
28
33
* Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
29
34
* </pre>
30
35
*
@@ -1026,7 +1031,12 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
1026
1031
* <pre>
1027
1032
* Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
1028
1033
* Settings exposed at lower level overrides the settings exposed at higher
1029
- * level.
1034
+ * level. Overriding occurs at the sub-setting level. For example, the
1035
+ * playback_interruption_settings at fulfillment level only overrides the
1036
+ * playback_interruption_settings at the agent level, leaving other settings
1037
+ * at the agent level unchanged.
1038
+ * DTMF settings does not override each other. DTMF settings set at different
1039
+ * levels define DTMF detections running in parallel.
1030
1040
* Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
1031
1041
* </pre>
1032
1042
*
Original file line number Diff line number Diff line change 24
24
* <pre>
25
25
* The request message for a webhook call. The request is sent as a JSON object
26
26
* and the field names will be presented in camel cases.
27
+ * You may see undocumented fields in an actual request. These fields are used
28
+ * internally by Dialogflow and should be ignored.
27
29
* </pre>
28
30
*
29
31
* Protobuf type {@code google.cloud.dialogflow.cx.v3.WebhookRequest}
@@ -5409,6 +5411,8 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
5409
5411
* <pre>
5410
5412
* The request message for a webhook call. The request is sent as a JSON object
5411
5413
* and the field names will be presented in camel cases.
5414
+ * You may see undocumented fields in an actual request. These fields are used
5415
+ * internally by Dialogflow and should be ignored.
5412
5416
* </pre>
5413
5417
*
5414
5418
* Protobuf type {@code google.cloud.dialogflow.cx.v3.WebhookRequest}
Original file line number Diff line number Diff line change @@ -29,7 +29,13 @@ option ruby_package = "Google::Cloud::Dialogflow::CX::V3";
29
29
30
30
// Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
31
31
// Settings exposed at lower level overrides the settings exposed at higher
32
- // level.
32
+ // level. Overriding occurs at the sub-setting level. For example, the
33
+ // playback_interruption_settings at fulfillment level only overrides the
34
+ // playback_interruption_settings at the agent level, leaving other settings
35
+ // at the agent level unchanged.
36
+ //
37
+ // DTMF settings does not override each other. DTMF settings set at different
38
+ // levels define DTMF detections running in parallel.
33
39
//
34
40
// Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
35
41
message AdvancedSettings {
Original file line number Diff line number Diff line change @@ -273,6 +273,9 @@ message DeleteWebhookRequest {
273
273
274
274
// The request message for a webhook call. The request is sent as a JSON object
275
275
// and the field names will be presented in camel cases.
276
+ //
277
+ // You may see undocumented fields in an actual request. These fields are used
278
+ // internally by Dialogflow and should be ignored.
276
279
message WebhookRequest {
277
280
// Represents fulfillment information communicated to the webhook.
278
281
message FulfillmentInfo {
You can’t perform that action at this time.
0 commit comments