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

me.chanjar.weixin.cp.bean.message.WxCpXmlOutUpdateBtnMessage Maven / Gradle / Ivy

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

import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamConverter;
import lombok.Data;
import lombok.EqualsAndHashCode;
import me.chanjar.weixin.common.api.WxConsts;
import me.chanjar.weixin.common.util.xml.XStreamReplaceNameConverter;

/**
 * The type Wx cp xml out update btn message.
 *
 * @author nickname263  created on  2021-09-23
 */
@XStreamAlias("xml")
@Data
@EqualsAndHashCode(callSuper = false)
public class WxCpXmlOutUpdateBtnMessage extends WxCpXmlOutMessage {
  private static final long serialVersionUID = 976182367423048138L;
  @XStreamAlias("Button")
  @XStreamConverter(value = XStreamReplaceNameConverter.class)
  private String replaceName;

  /**
   * Instantiates a new Wx cp xml out update btn message.
   */
  public WxCpXmlOutUpdateBtnMessage() {
    this.msgType = WxConsts.XmlMsgType.UPDATE_BUTTON;
  }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy