gitbundle_sdk/models/
workflow_update_input.rs1use serde::{Deserialize, Serialize};
12
13use crate::models;
14
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct WorkflowUpdateInput {
17 #[serde(
18 rename = "after",
19 default,
20 with = "::serde_with::rust::double_option",
21 skip_serializing_if = "Option::is_none"
22 )]
23 pub after: Option<Option<String>>,
24 #[serde(
25 rename = "error",
26 default,
27 with = "::serde_with::rust::double_option",
28 skip_serializing_if = "Option::is_none"
29 )]
30 pub error: Option<Option<String>>,
31 #[serde(
32 rename = "finished",
33 default,
34 with = "::serde_with::rust::double_option",
35 skip_serializing_if = "Option::is_none"
36 )]
37 pub finished: Option<Option<i64>>,
38 #[serde(
39 rename = "started",
40 default,
41 with = "::serde_with::rust::double_option",
42 skip_serializing_if = "Option::is_none"
43 )]
44 pub started: Option<Option<i64>>,
45 #[serde(
46 rename = "status",
47 default,
48 with = "::serde_with::rust::double_option",
49 skip_serializing_if = "Option::is_none"
50 )]
51 pub status: Option<Option<models::CiStatus>>,
52}
53
54impl WorkflowUpdateInput {
55 pub fn new() -> WorkflowUpdateInput {
56 WorkflowUpdateInput {
57 after: None,
58 error: None,
59 finished: None,
60 started: None,
61 status: None,
62 }
63 }
64}