Struct google_dialogflow2_beta1::GoogleCloudDialogflowV2beta1TextInput[][src]

pub struct GoogleCloudDialogflowV2beta1TextInput {
    pub language_code: Option<String>,
    pub text: Option<String>,
}

Represents the natural language text to be processed.

This type is not used in any activity, and only used as part of another schema.

Fields

Required. The language of this conversational query. See Language Support for a list of the currently supported language codes. Note that queries in the same session do not necessarily need to specify the same language.

Required. The UTF-8 encoded natural language text to be processed. Text length must not exceed 256 bytes.

Trait Implementations

impl Default for GoogleCloudDialogflowV2beta1TextInput
[src]

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

impl Clone for GoogleCloudDialogflowV2beta1TextInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GoogleCloudDialogflowV2beta1TextInput
[src]

Formats the value using the given formatter. Read more

impl Part for GoogleCloudDialogflowV2beta1TextInput
[src]

Auto Trait Implementations