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

me.chanjar.weixin.cp.bean.messagebuilder.MarkdownMsgBuilder 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;

/**
 * 
 * markdown类型的消息builder
 * Created by Binary Wang on 2019/1/20.
 * 
* * @author Binary Wang */ public class MarkdownMsgBuilder extends BaseBuilder { private String content; /** * Instantiates a new Markdown msg builder. */ public MarkdownMsgBuilder() { this.msgType = WxConsts.KefuMsgType.MARKDOWN; } /** * Content markdown msg builder. * * @param content the content * @return the markdown msg builder */ public MarkdownMsgBuilder content(String content) { this.content = content; return this; } @Override public WxCpMessage build() { WxCpMessage m = super.build(); m.setContent(this.content); return m; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy