Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

docs: clarify descriptions of the AdvancedSettings and WebhookRequest data types #501

Merged
merged 4 commits into from
Jun 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@
* <pre>
* Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
* Settings exposed at lower level overrides the settings exposed at higher
* level.
* level. Overriding occurs at the sub-setting level. For example, the
* playback_interruption_settings at fulfillment level only overrides the
* playback_interruption_settings at the agent level, leaving other settings
* at the agent level unchanged.
* DTMF settings does not override each other. DTMF settings set at different
* levels define DTMF detections running in parallel.
* Hierarchy: Agent-&gt;Flow-&gt;Page-&gt;Fulfillment/Parameter.
* </pre>
*
Expand Down Expand Up @@ -1041,7 +1046,12 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
* <pre>
* Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
* Settings exposed at lower level overrides the settings exposed at higher
* level.
* level. Overriding occurs at the sub-setting level. For example, the
* playback_interruption_settings at fulfillment level only overrides the
* playback_interruption_settings at the agent level, leaving other settings
* at the agent level unchanged.
* DTMF settings does not override each other. DTMF settings set at different
* levels define DTMF detections running in parallel.
* Hierarchy: Agent-&gt;Flow-&gt;Page-&gt;Fulfillment/Parameter.
* </pre>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
* <pre>
* The request message for a webhook call. The request is sent as a JSON object
* and the field names will be presented in camel cases.
* You may see undocumented fields in an actual request. These fields are used
* internally by Dialogflow and should be ignored.
* </pre>
*
* Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.WebhookRequest}
Expand Down Expand Up @@ -5458,6 +5460,8 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
* <pre>
* The request message for a webhook call. The request is sent as a JSON object
* and the field names will be presented in camel cases.
* You may see undocumented fields in an actual request. These fields are used
* internally by Dialogflow and should be ignored.
* </pre>
*
* Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.WebhookRequest}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ option ruby_package = "Google::Cloud::Dialogflow::CX::V3beta1";

// Hierarchical advanced settings for agent/flow/page/fulfillment/parameter.
// Settings exposed at lower level overrides the settings exposed at higher
// level.
// level. Overriding occurs at the sub-setting level. For example, the
// playback_interruption_settings at fulfillment level only overrides the
// playback_interruption_settings at the agent level, leaving other settings
// at the agent level unchanged.
//
// DTMF settings does not override each other. DTMF settings set at different
// levels define DTMF detections running in parallel.
//
// Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.
message AdvancedSettings {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,9 @@ message DeleteWebhookRequest {

// The request message for a webhook call. The request is sent as a JSON object
// and the field names will be presented in camel cases.
//
// You may see undocumented fields in an actual request. These fields are used
// internally by Dialogflow and should be ignored.
message WebhookRequest {
// Represents fulfillment information communicated to the webhook.
message FulfillmentInfo {
Expand Down