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

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

package com.alipay.api.domain;

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

/**
 * 满减券详情
 *
 * @author auto create
 * @since 1.0, 2023-07-24 23:20:09
 */
public class PaymentFixVoucher extends AlipayObject {

	private static final long serialVersionUID = 2511555889448151747L;

	/**
	 * 面额,每张优惠券可以抵扣的金额。

限制:
1、币种为人民币,单位为元。小数点以后最多保留两位。
2、取值范围:0.1<=x<=3000
	 */
	@ApiField("amount")
	private String amount;

	/**
	 * 门槛金额。该字段不填写,认为无门槛。
	 */
	@ApiField("floor_amount")
	private String floorAmount;

	public String getAmount() {
		return this.amount;
	}
	public void setAmount(String amount) {
		this.amount = amount;
	}

	public String getFloorAmount() {
		return this.floorAmount;
	}
	public void setFloorAmount(String floorAmount) {
		this.floorAmount = floorAmount;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy