Struct rusoto_lex_models::UtteranceData[][src]

pub struct UtteranceData {
    pub count: Option<i64>,
    pub distinct_users: Option<i64>,
    pub first_uttered_date: Option<f64>,
    pub last_uttered_date: Option<f64>,
    pub utterance_string: Option<String>,
}

Provides information about a single utterance that was made to your bot.

Fields

The number of times that the utterance was processed.

The total number of individuals that used the utterance.

The date that the utterance was first recorded.

The date that the utterance was last recorded.

The text that was entered by the user or the text representation of an audio clip.

Trait Implementations

impl Default for UtteranceData
[src]

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

impl Debug for UtteranceData
[src]

Formats the value using the given formatter. Read more

impl Clone for UtteranceData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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