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! 

///A list of third-party applications which the user has installed or given access to Google Drive.
#[derive(Debug, Clone, ::serde::Deserialize, ::serde::Serialize)]
pub struct AppList {
    #[serde(rename = "defaultAppIds")]
    ///The list of app IDs that the user has specified to use by default. The list is in reverse-priority order (lowest to highest).
    pub default_app_ids: ::alloc::vec::Vec<::alloc::string::String>,
    #[serde(rename = "items")]
    ///The list of apps.
    pub items: ::alloc::vec::Vec<crate::discovery::schemas::app::App>,
    #[serde(rename = "kind")]
    ///Output only. Identifies what kind of resource this is. Value: the fixed string "drive#appList".
    pub kind: ::alloc::string::String,
    #[serde(rename = "selfLink")]
    ///A link back to this list.
    pub self_link: ::alloc::string::String,
}
///A list of third-party applications which the user has installed or given access to Google Drive.
#[derive(Debug, Clone, ::serde::Deserialize, ::serde::Serialize, Default)]
pub struct AppListPartial {
    #[serde(rename = "defaultAppIds")]
    #[serde(skip_serializing_if = "::core::option::Option::is_none")]
    ///The list of app IDs that the user has specified to use by default. The list is in reverse-priority order (lowest to highest).
    pub default_app_ids: ::core::option::Option<
        ::alloc::vec::Vec<::alloc::string::String>,
    >,
    #[serde(rename = "items")]
    #[serde(skip_serializing_if = "::core::option::Option::is_none")]
    ///The list of apps.
    pub items: ::core::option::Option<
        ::alloc::vec::Vec<crate::discovery::schemas::app::AppPartial>,
    >,
    #[serde(rename = "kind")]
    #[serde(skip_serializing_if = "::core::option::Option::is_none")]
    ///Output only. Identifies what kind of resource this is. Value: the fixed string "drive#appList".
    pub kind: ::core::option::Option<::alloc::string::String>,
    #[serde(rename = "selfLink")]
    #[serde(skip_serializing_if = "::core::option::Option::is_none")]
    ///A link back to this list.
    pub self_link: ::core::option::Option<::alloc::string::String>,
}