1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use serde::Deserialize;

use crate::helpers::Class;

use super::{Artifact, Build, BuildStatus};
use crate::action::CommonAction;
use crate::changeset;
use crate::job::FreeStyleProject;
use crate::user::ShortUser;

build_with_common_fields_and_impl!(
    /// A `Build` from a FreeStyleProject
    #[derive(Deserialize, Debug)]
    #[serde(rename_all = "camelCase")]
    pub struct FreeStyleBuild<ParentJob = FreeStyleProject> {
        /// Which slave was it build on
        pub built_on: String,
        /// Change set for this build
        pub change_set: changeset::CommonChangeSetList,
        /// List of user ids who made a change since the last non-broken build
        pub culprits: Vec<ShortUser>,
    }
);
register_class!("hudson.model.FreeStyleBuild" => FreeStyleBuild);

impl FreeStyleBuild {}