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

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

There is a newer version: 4.6.7.B
Show newest version
package me.chanjar.weixin.cp.bean.messagebuilder;

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

/**
 * 获得消息builder
 * 
 * 用法: WxCustomMessage m = WxCustomMessage.FILE().mediaId(...).toUser(...).build();
 * 
* * @author Daniel Qian */ public final class FileBuilder extends BaseBuilder { private String mediaId; /** * Instantiates a new File builder. */ public FileBuilder() { this.msgType = WxConsts.KefuMsgType.FILE; } /** * Media id file builder. * * @param mediaId the media id * @return the file builder */ public FileBuilder mediaId(String mediaId) { this.mediaId = mediaId; return this; } @Override public WxCpMessage build() { WxCpMessage m = super.build(); m.setMediaId(this.mediaId); return m; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy