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

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

	private static final long serialVersionUID = 6549735893425299996L;

	/**
	 * 金额-分
	 */
	@ApiField("cent")
	private Long cent;

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

	public Long getCent() {
		return this.cent;
	}
	public void setCent(Long cent) {
		this.cent = cent;
	}

	public String getCurrencyCode() {
		return this.currencyCode;
	}
	public void setCurrencyCode(String currencyCode) {
		this.currencyCode = currencyCode;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy