wechat-work
Version:
sdk for work.weixin.qq.com/api/doc.
12 lines (11 loc) • 491 B
TypeScript
import { EnumSafe } from "../enums/safe.enum";
import { AppMessageBase } from "./app-message-base.class";
export declare class TextCardAppMessage extends AppMessageBase {
textcard: {
title: string;
description: string;
url: string;
btntxt: string;
};
constructor(title: string, description: string, url: string, btnText: string, agentId: number, targetUserIds?: string[], targetDepartmentIds?: string[], targetTags?: string[], safe?: EnumSafe);
}