pub struct ContactCreateUserRequest {
pub name: String,
pub mobile: String,
pub dept_id_list: String,
pub userid: Option<String>,
pub extra: BTreeMap<String, Value>,
}Expand description
Public webhook and enterprise request/response helper types. Re-exported enterprise request/response types. Request for creating a user.
Fields§
§name: StringDisplay name.
mobile: StringMobile phone number.
dept_id_list: StringDepartment id list encoded as DingTalk expects.
userid: Option<String>Optional user id.
extra: BTreeMap<String, Value>Additional pass-through fields supported by DingTalk.
Implementations§
Trait Implementations§
Source§impl Clone for ContactCreateUserRequest
impl Clone for ContactCreateUserRequest
Source§fn clone(&self) -> ContactCreateUserRequest
fn clone(&self) -> ContactCreateUserRequest
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 ContactCreateUserRequest
impl Debug for ContactCreateUserRequest
Auto Trait Implementations§
impl Freeze for ContactCreateUserRequest
impl RefUnwindSafe for ContactCreateUserRequest
impl Send for ContactCreateUserRequest
impl Sync for ContactCreateUserRequest
impl Unpin for ContactCreateUserRequest
impl UnsafeUnpin for ContactCreateUserRequest
impl UnwindSafe for ContactCreateUserRequest
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