46 lines
1.2 KiB
Rust
46 lines
1.2 KiB
Rust
|
/*
|
||
|
* Gitea API.
|
||
|
*
|
||
|
* This documentation describes the Gitea API.
|
||
|
*
|
||
|
* The version of the OpenAPI document: 1.17.3
|
||
|
*
|
||
|
* Generated by: https://openapi-generator.tech
|
||
|
*/
|
||
|
|
||
|
/// GitEntry : GitEntry represents a git tree
|
||
|
|
||
|
|
||
|
|
||
|
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
|
||
|
pub struct GitEntry {
|
||
|
#[serde(rename = "mode", skip_serializing_if = "Option::is_none")]
|
||
|
pub mode: Option<String>,
|
||
|
#[serde(rename = "path", skip_serializing_if = "Option::is_none")]
|
||
|
pub path: Option<String>,
|
||
|
#[serde(rename = "sha", skip_serializing_if = "Option::is_none")]
|
||
|
pub sha: Option<String>,
|
||
|
#[serde(rename = "size", skip_serializing_if = "Option::is_none")]
|
||
|
pub size: Option<i64>,
|
||
|
#[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 GitEntry {
|
||
|
/// GitEntry represents a git tree
|
||
|
pub fn new() -> GitEntry {
|
||
|
GitEntry {
|
||
|
mode: None,
|
||
|
path: None,
|
||
|
sha: None,
|
||
|
size: None,
|
||
|
r#type: None,
|
||
|
url: None,
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|