wechat-work
Version:
sdk for work.weixin.qq.com/api/doc.
20 lines (19 loc) • 576 B
TypeScript
import { EnumGender } from "../contacts";
import { IExternalProfile } from "./external-profile";
import { EnumExternalUserType } from "./external-user-type.enum";
export declare class ExternalUser {
external_userid: string;
position: string;
avatar: string;
corp_name: string;
corp_full_name: string;
type: EnumExternalUserType;
gender: EnumGender;
unionid: string;
external_profile: IExternalProfile;
externalUserId: string;
corpName: string;
corpFullName: string;
unionId: string;
externalProfile: IExternalProfile;
}