murdock_api/models/
information_of_the_commit_to_process.rs

1/*
2 * Murdock API
3 *
4 * This is the Murdock API
5 *
6 * The version of the OpenAPI document: 1.0.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
15pub struct InformationOfTheCommitToProcess {
16    #[serde(rename = "sha", skip_serializing_if = "Option::is_none")]
17    pub sha: Option<String>,
18    #[serde(rename = "tree", skip_serializing_if = "Option::is_none")]
19    pub tree: Option<String>,
20    #[serde(rename = "message", skip_serializing_if = "Option::is_none")]
21    pub message: Option<String>,
22    #[serde(rename = "author", skip_serializing_if = "Option::is_none")]
23    pub author: Option<String>,
24}
25
26impl InformationOfTheCommitToProcess {
27    pub fn new() -> InformationOfTheCommitToProcess {
28        InformationOfTheCommitToProcess {
29            sha: None,
30            tree: None,
31            message: None,
32            author: None,
33        }
34    }
35}
36
37