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

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

package com.alipay.api.domain;

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

/**
 * 行业缴费ISV金额DTO
 *
 * @author auto create
 * @since 1.0, 2024-04-22 16:51:16
 */
public class IndrMoneyDTO extends AlipayObject {

	private static final long serialVersionUID = 8691719348791319376L;

	/**
	 * 币种
	 */
	@ApiField("currency")
	private String currency;

	/**
	 * 金额最小单位遵循ISO4217标准
	 */
	@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