35 lines
733 B
Rust
35 lines
733 B
Rust
/*
|
|
* Gitea API.
|
|
*
|
|
* This documentation describes the Gitea API.
|
|
*
|
|
* The version of the OpenAPI document: 1.17.3
|
|
*
|
|
* Generated by: https://openapi-generator.tech
|
|
*/
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
|
|
pub struct GitObject {
|
|
#[serde(rename = "sha", skip_serializing_if = "Option::is_none")]
|
|
pub sha: Option<String>,
|
|
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
|
|
pub r#type: Option<String>,
|
|
#[serde(rename = "url", skip_serializing_if = "Option::is_none")]
|
|
pub url: Option<String>,
|
|
}
|
|
|
|
impl GitObject {
|
|
pub fn new() -> GitObject {
|
|
GitObject {
|
|
sha: None,
|
|
r#type: None,
|
|
url: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
|