Co-authored-by: kjuulh <contact@kjuulh.io> Reviewed-on: https://git.front.kjuulh.io/kjuulh/octopush/pulls/38
56 lines
1.8 KiB
Rust
56 lines
1.8 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
|
|
*/
|
|
|
|
/// CommitStatus : CommitStatus holds a single status of a single Commit
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
|
|
pub struct CommitStatus {
|
|
#[serde(rename = "context", skip_serializing_if = "Option::is_none")]
|
|
pub context: Option<String>,
|
|
#[serde(rename = "created_at", skip_serializing_if = "Option::is_none")]
|
|
pub created_at: Option<String>,
|
|
#[serde(rename = "creator", skip_serializing_if = "Option::is_none")]
|
|
pub creator: Option<Box<crate::models::User>>,
|
|
#[serde(rename = "description", skip_serializing_if = "Option::is_none")]
|
|
pub description: Option<String>,
|
|
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
|
|
pub id: Option<i64>,
|
|
/// CommitStatusState holds the state of a CommitStatus It can be \"pending\", \"success\", \"error\", \"failure\", and \"warning\"
|
|
#[serde(rename = "status", skip_serializing_if = "Option::is_none")]
|
|
pub status: Option<String>,
|
|
#[serde(rename = "target_url", skip_serializing_if = "Option::is_none")]
|
|
pub target_url: Option<String>,
|
|
#[serde(rename = "updated_at", skip_serializing_if = "Option::is_none")]
|
|
pub updated_at: Option<String>,
|
|
#[serde(rename = "url", skip_serializing_if = "Option::is_none")]
|
|
pub url: Option<String>,
|
|
}
|
|
|
|
impl CommitStatus {
|
|
/// CommitStatus holds a single status of a single Commit
|
|
pub fn new() -> CommitStatus {
|
|
CommitStatus {
|
|
context: None,
|
|
created_at: None,
|
|
creator: None,
|
|
description: None,
|
|
id: None,
|
|
status: None,
|
|
target_url: None,
|
|
updated_at: None,
|
|
url: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
|