#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
conjure_object::private::DeriveWith
)]
#[serde(crate = "conjure_object::serde")]
#[derive_with(PartialEq, Eq, PartialOrd, Ord, Hash)]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct SubmitJobsRequest {
#[builder(default, set(item(type = super::JobSpec)))]
#[serde(
rename = "jobsToExecute",
skip_serializing_if = "std::collections::BTreeSet::is_empty",
default
)]
jobs_to_execute: std::collections::BTreeSet<super::JobSpec>,
}
impl SubmitJobsRequest {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn jobs_to_execute(&self) -> &std::collections::BTreeSet<super::JobSpec> {
&self.jobs_to_execute
}
}