All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.cp.bean.messagebuilder.VideoBuilder Maven / Gradle / Ivy

The newest version!
package me.chanjar.weixin.cp.bean.messagebuilder;

import me.chanjar.weixin.common.api.WxConsts;
import me.chanjar.weixin.cp.bean.WxCpMessage;

/**
 * 视频消息builder
 * 
 * 用法: WxCustomMessage m = WxCustomMessage.VOICE()
 *                              .mediaId(...)
 *                              .title(...)
 *                              .thumbMediaId(..)
 *                              .description(..)
 *                              .toUser(...)
 *                              .build();
 * 
* @author Daniel Qian * */ public final class VideoBuilder extends BaseBuilder { private String mediaId; private String title; private String description; private String thumbMediaId; public VideoBuilder() { this.msgType = WxConsts.CUSTOM_MSG_VIDEO; } public VideoBuilder mediaId(String mediaId) { this.mediaId = mediaId; return this; } public VideoBuilder title(String title) { this.title = title; return this; } public VideoBuilder description(String description) { this.description = description; return this; } public VideoBuilder thumbMediaId(String thumb_media_id) { this.thumbMediaId = thumb_media_id; return this; } public WxCpMessage build() { WxCpMessage m = super.build(); m.setMediaId(this.mediaId); m.setTitle(title); m.setDescription(description); m.setThumbMediaId(thumbMediaId); return m; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy