pub struct PostScimV2UsersBody {
pub active: Option<bool>,
pub external_id: Option<String>,
pub groups: Option<Vec<String>>,
pub locale: Option<String>,
pub name: Option<PostScimV2UsersBodyName>,
pub schemas: Option<Vec<String>>,
pub user_name: Option<String>,
}
Fields§
§active: Option<bool>
If true, activates the user. This lets them authenticate in to your Postman team.
external_id: Option<String>
The user’s external ID.
groups: Option<Vec<String>>
A list of groups to which to assign the user to.
locale: Option<String>
The user’s IETF locale.
name: Option<PostScimV2UsersBodyName>
Information about the user’s name.
schemas: Option<Vec<String>>
The SCIM schema resource URI.
user_name: Option<String>
The user’s username.
Trait Implementations§
Source§impl Clone for PostScimV2UsersBody
impl Clone for PostScimV2UsersBody
Source§fn clone(&self) -> PostScimV2UsersBody
fn clone(&self) -> PostScimV2UsersBody
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PostScimV2UsersBody
impl Debug for PostScimV2UsersBody
Source§impl<'de> Deserialize<'de> for PostScimV2UsersBody
impl<'de> Deserialize<'de> for PostScimV2UsersBody
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PostScimV2UsersBody
impl PartialEq for PostScimV2UsersBody
Source§impl Serialize for PostScimV2UsersBody
impl Serialize for PostScimV2UsersBody
impl StructuralPartialEq for PostScimV2UsersBody
Auto Trait Implementations§
impl Freeze for PostScimV2UsersBody
impl RefUnwindSafe for PostScimV2UsersBody
impl Send for PostScimV2UsersBody
impl Sync for PostScimV2UsersBody
impl Unpin for PostScimV2UsersBody
impl UnwindSafe for PostScimV2UsersBody
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more