Struct rusoto_lex_models::FollowUpPrompt[][src]

pub struct FollowUpPrompt {
    pub prompt: Prompt,
    pub rejection_statement: Statement,
}

A prompt for additional activity after an intent is fulfilled. For example, after the OrderPizza intent is fulfilled, you might prompt the user to find out whether the user wants to order drinks.

Fields

Prompts for information from the user.

If the user answers "no" to the question defined in the prompt field, Amazon Lex responds with this statement to acknowledge that the intent was canceled.

Trait Implementations

impl Default for FollowUpPrompt
[src]

Returns the "default value" for a type. Read more

impl Debug for FollowUpPrompt
[src]

Formats the value using the given formatter. Read more

impl Clone for FollowUpPrompt
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for FollowUpPrompt
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations