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

com.alipay.api.domain.IndustryRefundChargeInfo Maven / Gradle / Ivy

package com.alipay.api.domain;

import java.util.List;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;

/**
 * 行业退费信息
 *
 * @author auto create
 * @since 1.0, 2024-09-26 18:30:33
 */
public class IndustryRefundChargeInfo extends AlipayObject {

	private static final long serialVersionUID = 8774954886922179346L;

	/**
	 * 收单手续费trade,花呗分期手续hbf...
	 */
	@ApiField("charge_type")
	private String chargeType;

	/**
	 * 实退费用
	 */
	@ApiField("refund_charge_fee")
	private String refundChargeFee;

	/**
	 * 组合支付退费明细
	 */
	@ApiListField("refund_sub_fee_detail_list")
	@ApiField("refund_sub_fee")
	private List refundSubFeeDetailList;

	/**
	 * 签约费率
	 */
	@ApiField("switch_fee_rate")
	private String switchFeeRate;

	public String getChargeType() {
		return this.chargeType;
	}
	public void setChargeType(String chargeType) {
		this.chargeType = chargeType;
	}

	public String getRefundChargeFee() {
		return this.refundChargeFee;
	}
	public void setRefundChargeFee(String refundChargeFee) {
		this.refundChargeFee = refundChargeFee;
	}

	public List getRefundSubFeeDetailList() {
		return this.refundSubFeeDetailList;
	}
	public void setRefundSubFeeDetailList(List refundSubFeeDetailList) {
		this.refundSubFeeDetailList = refundSubFeeDetailList;
	}

	public String getSwitchFeeRate() {
		return this.switchFeeRate;
	}
	public void setSwitchFeeRate(String switchFeeRate) {
		this.switchFeeRate = switchFeeRate;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy