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 generated file IDs which can be provided in create requests.
#[derive(Debug, Clone, ::serde::Deserialize, ::serde::Serialize)]
pub struct GeneratedIds {
    #[serde(rename = "ids")]
    ///The IDs generated for the requesting user in the specified space.
    pub ids: ::alloc::vec::Vec<::alloc::string::String>,
    #[serde(rename = "kind")]
    ///Identifies what kind of resource this is. Value: the fixed string `"drive#generatedIds"`.
    pub kind: ::alloc::string::String,
    #[serde(rename = "space")]
    ///The type of file that can be created with these IDs.
    pub space: ::alloc::string::String,
}
///A list of generated file IDs which can be provided in create requests.
#[derive(Debug, Clone, ::serde::Deserialize, ::serde::Serialize, Default)]
pub struct GeneratedIdsPartial {
    #[serde(rename = "ids")]
    #[serde(skip_serializing_if = "::core::option::Option::is_none")]
    ///The IDs generated for the requesting user in the specified space.
    pub ids: ::core::option::Option<::alloc::vec::Vec<::alloc::string::String>>,
    #[serde(rename = "kind")]
    #[serde(skip_serializing_if = "::core::option::Option::is_none")]
    ///Identifies what kind of resource this is. Value: the fixed string `"drive#generatedIds"`.
    pub kind: ::core::option::Option<::alloc::string::String>,
    #[serde(rename = "space")]
    #[serde(skip_serializing_if = "::core::option::Option::is_none")]
    ///The type of file that can be created with these IDs.
    pub space: ::core::option::Option<::alloc::string::String>,
}