#[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 RefpropSeriesV2 {
#[builder(
default,
map(key(type = super::RefpropProperty), value(type = super::NumericSeries))
)]
#[serde(
rename = "inputs",
skip_serializing_if = "std::collections::BTreeMap::is_empty",
default
)]
inputs: std::collections::BTreeMap<super::RefpropProperty, super::NumericSeries>,
#[serde(rename = "substance")]
substance: super::RefpropSubstance,
#[serde(rename = "outputProperty")]
output_property: super::RefpropProperty,
}
impl RefpropSeriesV2 {
#[inline]
pub fn new(
substance: super::RefpropSubstance,
output_property: super::RefpropProperty,
) -> Self {
Self::builder().substance(substance).output_property(output_property).build()
}
#[inline]
pub fn inputs(
&self,
) -> &std::collections::BTreeMap<super::RefpropProperty, super::NumericSeries> {
&self.inputs
}
#[inline]
pub fn substance(&self) -> &super::RefpropSubstance {
&self.substance
}
#[inline]
pub fn output_property(&self) -> &super::RefpropProperty {
&self.output_property
}
}