#[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 RefpropSeries {
#[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 = "outputProperty")]
output_property: super::RefpropProperty,
#[serde(rename = "substance")]
substance: super::RefpropSubstance,
#[builder(
default,
custom(
type = impl
Into<Option<super::InterpolationConfiguration>>,
convert = |v|v.into().map(Box::new)
)
)]
#[serde(
rename = "interpolationConfiguration",
skip_serializing_if = "Option::is_none",
default
)]
interpolation_configuration: Option<Box<super::InterpolationConfiguration>>,
}
impl RefpropSeries {
#[inline]
pub fn new(
output_property: super::RefpropProperty,
substance: super::RefpropSubstance,
) -> Self {
Self::builder().output_property(output_property).substance(substance).build()
}
#[inline]
pub fn inputs(
&self,
) -> &std::collections::BTreeMap<super::RefpropProperty, super::NumericSeries> {
&self.inputs
}
#[inline]
pub fn output_property(&self) -> &super::RefpropProperty {
&self.output_property
}
#[inline]
pub fn substance(&self) -> &super::RefpropSubstance {
&self.substance
}
#[inline]
pub fn interpolation_configuration(
&self,
) -> Option<&super::InterpolationConfiguration> {
self.interpolation_configuration.as_ref().map(|o| &**o)
}
}