Struct rusoto_lex_runtime::GenericAttachment [] [src]

pub struct GenericAttachment {
    pub attachment_link_url: Option<String>,
    pub buttons: Option<Vec<Button>>,
    pub image_url: Option<String>,
    pub sub_title: Option<String>,
    pub title: Option<String>,
}

Represents an option rendered to the user when a prompt is shown. It could be an image, a button, a link, or text.

Fields

The URL of an attachment to the response card.

The list of options to show to the user.

The URL of an image that is displayed to the user.

The subtitle shown below the title.

The title of the option.

Trait Implementations

impl Default for GenericAttachment
[src]

[src]

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

impl Debug for GenericAttachment
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GenericAttachment
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations