Struct rusoto_workdocs::DocumentMetadata [] [src]

pub struct DocumentMetadata {
    pub created_timestamp: Option<f64>,
    pub creator_id: Option<String>,
    pub id: Option<String>,
    pub labels: Option<Vec<String>>,
    pub latest_version_metadata: Option<DocumentVersionMetadata>,
    pub modified_timestamp: Option<f64>,
    pub parent_folder_id: Option<String>,
    pub resource_state: Option<String>,
}

Describes the document.

Fields

The time when the document was created.

The ID of the creator.

The ID of the document.

List of labels on the document.

The latest version of the document.

The time when the document was updated.

The ID of the parent folder.

The resource state.

Trait Implementations

impl Default for DocumentMetadata
[src]

[src]

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

impl Debug for DocumentMetadata
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DocumentMetadata
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations