wechat-work
Version:
sdk for work.weixin.qq.com/api/doc.
12 lines (11 loc) • 491 B
TypeScript
import { EnumAppMessageType } from "../enums/app-message-type.enum";
import { EnumSafe } from "../enums/safe.enum";
export declare class AppMessageBase {
touser?: string;
toparty?: string;
totag?: string;
msgtype: EnumAppMessageType;
agentid: number;
safe: EnumSafe;
constructor(targetUserIds: string[] | undefined, targetDepartmentIds: string[] | undefined, targetTags: string[] | undefined, agentId: number, messageType: EnumAppMessageType, safe?: EnumSafe);
}