[][src]Struct google_dialogflow2_beta1::GoogleCloudDialogflowV2beta1Document

pub struct GoogleCloudDialogflowV2beta1Document {
    pub mime_type: Option<String>,
    pub content: Option<String>,
    pub display_name: Option<String>,
    pub content_uri: Option<String>,
    pub knowledge_types: Option<Vec<String>>,
    pub raw_content: Option<String>,
    pub name: Option<String>,
}

A document resource.

Note: The projects.agent.knowledgeBases.documents resource is deprecated; only use projects.knowledgeBases.documents.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

mime_type: Option<String>

Required. The MIME type of this document.

content: Option<String>

The raw content of the document. This field is only permitted for EXTRACTIVE_QA and FAQ knowledge types. Note: This field is in the process of being deprecated, please use raw_content instead.

display_name: Option<String>

Required. The display name of the document. The name must be 1024 bytes or less; otherwise, the creation request fails.

content_uri: Option<String>

The URI where the file content is located.

For documents stored in Google Cloud Storage, these URIs must have the form gs://<bucket-name>/<object-name>.

NOTE: External URLs must correspond to public webpages, i.e., they must be indexed by Google Search. In particular, URLs for showing documents in Google Cloud Storage (i.e. the URL in your browser) are not supported. Instead use the gs:// format URI described above.

knowledge_types: Option<Vec<String>>

Required. The knowledge type of document content.

raw_content: Option<String>

The raw content of the document. This field is only permitted for EXTRACTIVE_QA and FAQ knowledge types.

name: Option<String>

The document resource name. The name must be empty when creating a document. Format: projects/<Project ID>/knowledgeBases/<Knowledge Base ID>/documents/<Document ID>.

Trait Implementations

impl ResponseResult for GoogleCloudDialogflowV2beta1Document[src]

impl RequestValue for GoogleCloudDialogflowV2beta1Document[src]

impl Default for GoogleCloudDialogflowV2beta1Document[src]

impl Clone for GoogleCloudDialogflowV2beta1Document[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for GoogleCloudDialogflowV2beta1Document[src]

impl Serialize for GoogleCloudDialogflowV2beta1Document[src]

impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2beta1Document[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]