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! 

///No description
#[derive(Debug, Clone, ::serde::Deserialize, ::serde::Serialize)]
pub struct StartPageToken {
    #[serde(rename = "kind")]
    ///Identifies what kind of resource this is. Value: the fixed string `"drive#startPageToken"`.
    pub kind: ::alloc::string::String,
    #[serde(rename = "startPageToken")]
    ///The starting page token for listing future changes. The page token doesn't expire.
    pub start_page_token: ::alloc::string::String,
}
///No description
#[derive(Debug, Clone, ::serde::Deserialize, ::serde::Serialize, Default)]
pub struct StartPageTokenPartial {
    #[serde(rename = "kind")]
    #[serde(skip_serializing_if = "::core::option::Option::is_none")]
    ///Identifies what kind of resource this is. Value: the fixed string `"drive#startPageToken"`.
    pub kind: ::core::option::Option<::alloc::string::String>,
    #[serde(rename = "startPageToken")]
    #[serde(skip_serializing_if = "::core::option::Option::is_none")]
    ///The starting page token for listing future changes. The page token doesn't expire.
    pub start_page_token: ::core::option::Option<::alloc::string::String>,
}