wechat-work
Version:
sdk for work.weixin.qq.com/api/doc.
9 lines (8 loc) • 365 B
TypeScript
import { EnumSafe } from "../enums/safe.enum";
import { AppMessageBase } from "./app-message-base.class";
export declare class ImageAppMessage extends AppMessageBase {
image: {
media_id: string;
};
constructor(mediaId: string, agentId: number, targetUserIds?: string[], targetDepartmentIds?: string[], targetTags?: string[], safe?: EnumSafe);
}