gapirs-drive-v3 0.0.1

Rust library for Google API drive v0.0.1
Documentation
// This file was generated by code-gen. DO NOT EDIT MANUALLY! 

///Response to a ModifyLabels request. This contains only those labels which were added or updated by the request.
#[derive(Debug, Clone, ::serde::Deserialize, ::serde::Serialize)]
pub struct ModifyLabelsResponse {
    #[serde(rename = "kind")]
    ///This is always drive#modifyLabelsResponse
    pub kind: ::alloc::string::String,
    #[serde(rename = "modifiedLabels")]
    ///The list of labels which were added or updated by the request.
    pub modified_labels: ::alloc::vec::Vec<crate::discovery::schemas::label::Label>,
}
///Response to a ModifyLabels request. This contains only those labels which were added or updated by the request.
#[derive(Debug, Clone, ::serde::Deserialize, ::serde::Serialize, Default)]
pub struct ModifyLabelsResponsePartial {
    #[serde(rename = "kind")]
    #[serde(skip_serializing_if = "::core::option::Option::is_none")]
    ///This is always drive#modifyLabelsResponse
    pub kind: ::core::option::Option<::alloc::string::String>,
    #[serde(rename = "modifiedLabels")]
    #[serde(skip_serializing_if = "::core::option::Option::is_none")]
    ///The list of labels which were added or updated by the request.
    pub modified_labels: ::core::option::Option<
        ::alloc::vec::Vec<crate::discovery::schemas::label::LabelPartial>,
    >,
}