pub struct ParamsExternalContactBatchGetByUser {
pub userid_list: Vec<String>,
pub cursor: Option<String>,
pub limit: Option<i64>,
}Fields§
§userid_list: Vec<String>企业成员的userid列表,字符串类型,最多支持100个
cursor: Option<String>用于分页查询的游标,字符串类型,由上一次调用返回,首次调用可不填
limit: Option<i64>返回的最大记录数,整型,最大值100,默认值50,超过最大值时取最大值
Trait Implementations§
Source§impl Default for ParamsExternalContactBatchGetByUser
impl Default for ParamsExternalContactBatchGetByUser
Source§fn default() -> ParamsExternalContactBatchGetByUser
fn default() -> ParamsExternalContactBatchGetByUser
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ParamsExternalContactBatchGetByUser
impl<'de> Deserialize<'de> for ParamsExternalContactBatchGetByUser
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 ParamsExternalContactBatchGetByUser
impl RefUnwindSafe for ParamsExternalContactBatchGetByUser
impl Send for ParamsExternalContactBatchGetByUser
impl Sync for ParamsExternalContactBatchGetByUser
impl Unpin for ParamsExternalContactBatchGetByUser
impl UnwindSafe for ParamsExternalContactBatchGetByUser
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