zhizhi/node_modules/dingtalk-jsapi/api/biz/user/get.d.ts

24 lines
627 B
TypeScript
Raw Normal View History

/**
*
* @apiName biz.user.get
*/
export interface IBizUserGetParams {
/** 是否允许无组织用户 4.6.37以上版本支持) */
allowNoOrgUser?: boolean;
[key: string]: any;
}
/**
*
* @apiName biz.user.get
*/
export interface IBizUserGetResult {
[key: string]: any;
}
/**
*
* @apiName biz.user.get
* @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0
*/
export declare function get$(params: IBizUserGetParams): Promise<IBizUserGetResult>;
export default get$;