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

com.alipay.api.domain.QuotaLimitModelDTO 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, 2024-11-01 15:09:18
 */
public class QuotaLimitModelDTO extends AlipayObject {

	private static final long serialVersionUID = 4385831475255939393L;

	/**
	 * AMOUNT_LIMIT,金额限制
	 */
	@ApiField("type")
	private String type;

	/**
	 * lowerLimit(金额门槛)必填,upperLimit(金额上限)
如果无上限,upperLimit可不填
单位:元
	 */
	@ApiField("value")
	private String value;

	public String getType() {
		return this.type;
	}
	public void setType(String type) {
		this.type = type;
	}

	public String getValue() {
		return this.value;
	}
	public void setValue(String value) {
		this.value = value;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy