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

com.github.binarywang.wxpay.bean.result.WxPayRefundCouponInfo Maven / Gradle / Ivy

There is a newer version: 4.6.9.B
Show newest version
package com.github.binarywang.wxpay.bean.result;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * 
 *  退款代金券信息.
 *  Created by BinaryWang on 2018/4/21.
 * 
* * @author Binary Wang */ @Data @NoArgsConstructor @AllArgsConstructor public class WxPayRefundCouponInfo { /** *
   * 字段名:退款代金券ID.
   * 变量名:coupon_refund_id_$n_$m
   * 是否必填:否
   * 类型:String(20)
   * 示例值:10000
   * 描述:退款代金券ID, $n为下标,$m为下标,从0开始编号
   * 
*/ @XStreamAlias("coupon_refund_id") private String couponRefundId; /** *
   * 字段名:单个退款代金券支付金额.
   * 变量名:coupon_refund_fee_$n_$m
   * 是否必填:否
   * 类型:Int
   * 示例值:100
   * 描述:单个退款代金券支付金额, $n为下标,$m为下标,从0开始编号
   * 
*/ @XStreamAlias("coupon_refund_fee") private Integer couponRefundFee; /** *
   * 字段名:代金券类型.
   * 变量名:coupon_type_$n_$m
   * 是否必填:否
   * 类型:String(8)
   * 示例值:CASH
   * 描述:CASH--充值代金券 , NO_CASH---非充值代金券。
   * 开通免充值券功能,并且订单使用了优惠券后有返回(取值:CASH、NO_CASH)。
   * $n为下标,$m为下标,从0开始编号,举例:coupon_type_$0_$1
   * 
*/ @XStreamAlias("coupon_type") private String couponType; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy