koishi-plugin-adapter-wecom
Version:
Koishi 企业微信适配器。
37 lines (36 loc) • 640 B
TypeScript
export interface ChangeContactUser {
UserID: string;
Name: string;
Department: string;
MainDepartment: string;
IsLeaderInDept: string;
DirectLeader: string;
Position: string;
Mobile: string;
Gender: string;
Email: string;
BizMail: string;
Status: string;
Avatar: string;
Alias: string;
Telephone: string;
Address: string;
ExtAttr: ExtAttr;
}
interface ExtAttr {
Item: Item[];
}
interface Item {
Name: string;
Type: string;
Text?: Text;
Web?: Web;
}
interface Web {
Title: string;
Url: string;
}
interface Text {
Value: string;
}
export {};