- 1.37.0 (latest)
- 1.36.0
- 1.35.0
- 1.34.1
- 1.33.0
- 1.32.1
- 1.31.1
- 1.30.1
- 1.29.0
- 1.28.0
- 1.27.0
- 1.26.0
- 1.25.0
- 1.24.0
- 1.23.1
- 1.22.0
- 1.21.0
- 1.20.1
- 1.19.0
- 1.18.0
- 1.17.1
- 1.16.0
- 1.15.0
- 1.14.1
- 1.13.5
- 1.12.1
- 1.11.0
- 1.10.0
- 1.9.1
- 1.8.0
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.2
- 1.2.0
- 1.1.1
- 1.0.0
- 0.8.2
- 0.7.1
- 0.6.0
- 0.5.0
- 0.4.1
- 0.3.0
- 0.2.0
- 0.1.1
Fulfillment(mapping=None, *, ignore_unknown_fields=False, **kwargs)
A fulfillment can do one or more of the following actions at the same time:
- Generate rich message responses.
- Set parameter values.
- Call the webhook.
Fulfillments can be called at various stages in the Page or Form lifecycle. For example, when a DetectIntentRequest drives a session to enter a new page, the page's entry fulfillment can add a static response to the QueryResult in the returning DetectIntentResponse, call the webhook (for example, to load user data from a database), or both.
Attributes
Name | Description |
messages |
Sequence[google.cloud.dialogflowcx_v3.types.ResponseMessage]
The list of rich message responses to present to the user. |
webhook |
str
The webhook to call. Format: ``projects/ |
return_partial_responses |
bool
Whether Dialogflow should return currently queued fulfillment response messages in streaming APIs. If a webhook is specified, it happens before Dialogflow invokes webhook. Warning: 1) This flag only affects streaming API. Responses are still queued and returned once in non-streaming API. 2) The flag can be enabled in any fulfillment but only the first 3 partial responses will be returned. You may only want to apply it to fulfillments that have slow webhooks. |
tag |
str
The value of this field will be populated in the WebhookRequest ``fulfillmentInfo.tag`` field by Dialogflow when the associated webhook is called. The tag is typically used by the webhook service to identify which fulfillment is being called, but it could be used for other purposes. This field is required if ``webhook`` is specified. |
set_parameter_actions |
Sequence[google.cloud.dialogflowcx_v3.types.Fulfillment.SetParameterAction]
Set parameter values before executing the webhook. |
conditional_cases |
Sequence[google.cloud.dialogflowcx_v3.types.Fulfillment.ConditionalCases]
Conditional cases for this fulfillment. |
Inheritance
builtins.object > proto.message.Message > FulfillmentClasses
ConditionalCases
ConditionalCases(mapping=None, *, ignore_unknown_fields=False, **kwargs)
A list of cascading if-else conditions. Cases are mutually exclusive. The first one with a matching condition is selected, all the rest ignored.
SetParameterAction
SetParameterAction(mapping=None, *, ignore_unknown_fields=False, **kwargs)
Setting a parameter value.