wechat-work
Version:
sdk for work.weixin.qq.com/api/doc.
32 lines (31 loc) • 836 B
TypeScript
import { IExternalProfile } from "../../external-contacts";
import { IExtAttr } from "./ext-attr.interface";
import { EnumGender } from "./gender.enum";
import { EnumTrueFalse } from "./true-false.enum";
export declare class User {
alias: string;
address: string;
userid: string;
name: string;
english_name?: string;
mobile?: string;
department?: number[];
order?: number[];
position?: string;
gender?: EnumGender;
email?: string;
isleader?: EnumTrueFalse;
enable?: boolean;
avatar?: string;
telephone?: string;
extattr?: IExtAttr;
to_invite?: boolean;
external_profile?: IExternalProfile;
qr_code?: string;
constructor(obj: object);
userId: string;
englishName: string;
isLeader: EnumTrueFalse;
extAttr: IExtAttr;
toInvite: boolean;
}