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

com.github.binarywang.wxpay.bean.profitsharing.request.ProfitSharingReceiverRequest Maven / Gradle / Ivy

The newest version!
package com.github.binarywang.wxpay.bean.profitsharing.request;

import com.github.binarywang.wxpay.bean.request.BaseWxPayRequest;
import com.github.binarywang.wxpay.constant.WxPayConstants;
import com.github.binarywang.wxpay.exception.WxPayException;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.*;
import me.chanjar.weixin.common.annotation.Required;

import java.util.Map;

/**
 * 添加/删除分账接受方请求对象
 *
 * @author Wang GuangXin 2019/10/22 13:41
 * @version 1.0
 */
@Data
@EqualsAndHashCode(callSuper = true)
@Builder(builderMethodName = "newBuilder")
@NoArgsConstructor
@AllArgsConstructor
@XStreamAlias("xml")
public class ProfitSharingReceiverRequest extends BaseWxPayRequest {
  private static final long serialVersionUID = 2628263563539120323L;
  /**
   * 
   * 字段名:分账接收方.
   * 变量名:receiver
   * 是否必填:是
   * String(2048)
   * 示例值:{
   *    "type": "MERCHANT_ID",
   *    "account": "190001001",
   *    "name": "示例商户全称",
   *    "relation_type": "STORE_OWNER"
   *    }
   * 描述:分账接收方对象,json格式
   * 
*/ @XStreamAlias("receiver") @Required private String receiver; @Override protected void checkConstraints() throws WxPayException { this.setSignType(WxPayConstants.SignType.HMAC_SHA256); } @Override protected void storeMap(Map map) { map.put("receiver", receiver); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy