Struct rusoto_lex_models::UtteranceList[][src]

pub struct UtteranceList {
    pub bot_version: Option<String>,
    pub utterances: Option<Vec<UtteranceData>>,
}

Provides a list of utterances that have been made to a specific version of your bot. The list contains a maximum of 100 utterances.

Fields

The version of the bot that processed the list.

One or more UtteranceData objects that contain information about the utterances that have been made to a bot. The maximum number of object is 100.

Trait Implementations

impl Default for UtteranceList
[src]

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

impl Debug for UtteranceList
[src]

Formats the value using the given formatter. Read more

impl Clone for UtteranceList
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UtteranceList
[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