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

me.chanjar.weixin.mp.bean.custombuilder.ImageBuilder Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package me.chanjar.weixin.mp.bean.custombuilder;

import me.chanjar.weixin.common.api.WxConsts;
import me.chanjar.weixin.mp.bean.WxMpCustomMessage;

/**
 * 获得消息builder
 * 
 * 用法: WxMpCustomMessage m = WxMpCustomMessage.IMAGE().mediaId(...).toUser(...).build();
 * 
* @author chanjarster * */ public final class ImageBuilder extends BaseBuilder { private String mediaId; public ImageBuilder() { this.msgType = WxConsts.CUSTOM_MSG_IMAGE; } public ImageBuilder mediaId(String media_id) { this.mediaId = media_id; return this; } public WxMpCustomMessage build() { WxMpCustomMessage m = super.build(); m.setMediaId(this.mediaId); return m; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy