nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
/// Response containing only the newly created users keyed by email.
/// Emails that already had existing accounts are silently skipped.
#[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 {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new() -> Self {
        Self::builder().build()
    }
    /// Map of email to UserV2 for each newly created user.
    #[inline]
    pub fn users(&self) -> &std::collections::BTreeMap<String, super::UserV2> {
        &self.users
    }
}