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

com.alipay.api.domain.Amount 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-05-31 15:00:10
 */
public class Amount extends AlipayObject {

	private static final long serialVersionUID = 3317996958825757371L;

	/**
	 * 3位币种Code,遵循ISO 4217
	 */
	@ApiField("currency")
	private String currency;

	/**
	 * 表示在最小货币单位中代表多少费用的正整数。
	 */
	@ApiField("value")
	private String value;

	public String getCurrency() {
		return this.currency;
	}
	public void setCurrency(String currency) {
		this.currency = currency;
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy