#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct BatchPreregisterUsersResponse {
#[builder(default, map(key(type = String, into), value(type = super::UserV2)))]
#[serde(
rename = "users",
skip_serializing_if = "std::collections::BTreeMap::is_empty",
default
)]
users: std::collections::BTreeMap<String, super::UserV2>,
}
impl BatchPreregisterUsersResponse {
#[inline]
pub fn new() -> Self {
Self::builder().build()
}
#[inline]
pub fn users(&self) -> &std::collections::BTreeMap<String, super::UserV2> {
&self.users
}
}