@tnwx/wxcp
Version:
TNWX 微信系开发脚手架之极速开发企业微信/企业号
22 lines (21 loc) • 783 B
TypeScript
import { QyBaseMsg, QyMediaId } from './QyBaseMsg';
/**
* @author Javen
* @copyright javendev@126.com
* @description 视频消息
*/
export declare class QyVideoMsg extends QyBaseMsg {
private video;
constructor(video: QyVideo, agentId?: string, toUser?: string, toParty?: string, toTag?: string, safe?: number, enableIdTrans?: number, enableDuplicateCheck?: number, duplicateCheckInterval?: number);
get getVideo(): QyVideo;
set setVideo(video: QyVideo);
}
export declare class QyVideo extends QyMediaId {
private title;
private description;
constructor(mediaId: string, title: string, description: string);
set setTitle(title: string);
get getTitle(): string;
get getDescription(): string;
set setDescription(description: string);
}