pub struct UpdateTeamRequest {
pub team_name: Option<String>,
pub team_description: Option<String>,
pub business_unit_id: Option<String>,
pub user_ids: Option<Vec<String>>,
}
Expand description
Request structure for updating a team
Fields§
§team_name: Option<String>
Team name
team_description: Option<String>
Team description
business_unit_id: Option<String>
Business unit ID
user_ids: Option<Vec<String>>
List of user IDs to add to the team (when using incremental=true)
Trait Implementations§
Source§impl Clone for UpdateTeamRequest
impl Clone for UpdateTeamRequest
Source§fn clone(&self) -> UpdateTeamRequest
fn clone(&self) -> UpdateTeamRequest
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 UpdateTeamRequest
impl Debug for UpdateTeamRequest
Source§impl<'de> Deserialize<'de> for UpdateTeamRequest
impl<'de> Deserialize<'de> for UpdateTeamRequest
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
Auto Trait Implementations§
impl Freeze for UpdateTeamRequest
impl RefUnwindSafe for UpdateTeamRequest
impl Send for UpdateTeamRequest
impl Sync for UpdateTeamRequest
impl Unpin for UpdateTeamRequest
impl UnwindSafe for UpdateTeamRequest
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