#[non_exhaustive]pub struct SsoUserProfileDetailsBuilder { /* private fields */ }
Expand description
A builder for SsoUserProfileDetails
.
Implementations§
source§impl SsoUserProfileDetailsBuilder
impl SsoUserProfileDetailsBuilder
sourcepub fn username(self, input: impl Into<String>) -> Self
pub fn username(self, input: impl Into<String>) -> Self
The username included in the single sign-on details of the user profile.
sourcepub fn set_username(self, input: Option<String>) -> Self
pub fn set_username(self, input: Option<String>) -> Self
The username included in the single sign-on details of the user profile.
sourcepub fn get_username(&self) -> &Option<String>
pub fn get_username(&self) -> &Option<String>
The username included in the single sign-on details of the user profile.
sourcepub fn first_name(self, input: impl Into<String>) -> Self
pub fn first_name(self, input: impl Into<String>) -> Self
The first name included in the single sign-on details of the user profile.
sourcepub fn set_first_name(self, input: Option<String>) -> Self
pub fn set_first_name(self, input: Option<String>) -> Self
The first name included in the single sign-on details of the user profile.
sourcepub fn get_first_name(&self) -> &Option<String>
pub fn get_first_name(&self) -> &Option<String>
The first name included in the single sign-on details of the user profile.
sourcepub fn last_name(self, input: impl Into<String>) -> Self
pub fn last_name(self, input: impl Into<String>) -> Self
The last name included in the single sign-on details of the user profile.
sourcepub fn set_last_name(self, input: Option<String>) -> Self
pub fn set_last_name(self, input: Option<String>) -> Self
The last name included in the single sign-on details of the user profile.
sourcepub fn get_last_name(&self) -> &Option<String>
pub fn get_last_name(&self) -> &Option<String>
The last name included in the single sign-on details of the user profile.
sourcepub fn build(self) -> SsoUserProfileDetails
pub fn build(self) -> SsoUserProfileDetails
Consumes the builder and constructs a SsoUserProfileDetails
.
Trait Implementations§
source§impl Clone for SsoUserProfileDetailsBuilder
impl Clone for SsoUserProfileDetailsBuilder
source§fn clone(&self) -> SsoUserProfileDetailsBuilder
fn clone(&self) -> SsoUserProfileDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SsoUserProfileDetailsBuilder
impl Debug for SsoUserProfileDetailsBuilder
source§impl Default for SsoUserProfileDetailsBuilder
impl Default for SsoUserProfileDetailsBuilder
source§fn default() -> SsoUserProfileDetailsBuilder
fn default() -> SsoUserProfileDetailsBuilder
source§impl PartialEq for SsoUserProfileDetailsBuilder
impl PartialEq for SsoUserProfileDetailsBuilder
source§fn eq(&self, other: &SsoUserProfileDetailsBuilder) -> bool
fn eq(&self, other: &SsoUserProfileDetailsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.