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

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

There is a newer version: 4.7.5.B
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.WXCARD().cardId(...).toUser(...).build();
 * 
* @author mgcnrx11 * */ public final class WxCardBuilder extends BaseBuilder { private String cardId; public WxCardBuilder() { this.msgType = WxConsts.CUSTOM_MSG_WXCARD; } public WxCardBuilder cardId(String cardId) { this.cardId = cardId; return this; } @Override public WxMpCustomMessage build() { WxMpCustomMessage m = super.build(); m.setCardId(this.cardId); return m; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy