com.alipay.api.response.AlipayOverseasOpenAmountPreconsultResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.TuitionISVAmountInfoDTO;
import com.alipay.api.domain.TuitionISVResult;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.overseas.open.amount.preconsult response.
*
* @author auto create
* @since 1.0, 2024-07-04 20:52:37
*/
public class AlipayOverseasOpenAmountPreconsultResponse extends AlipayResponse {
private static final long serialVersionUID = 4322459431813628282L;
/**
* 缴费金额信息
*/
@ApiField("amount_info")
private TuitionISVAmountInfoDTO amountInfo;
/**
* 外部参考号
*/
@ApiField("reference_id")
private String referenceId;
/**
* 金额试算结果
*/
@ApiField("result")
private TuitionISVResult result;
public void setAmountInfo(TuitionISVAmountInfoDTO amountInfo) {
this.amountInfo = amountInfo;
}
public TuitionISVAmountInfoDTO getAmountInfo( ) {
return this.amountInfo;
}
public void setReferenceId(String referenceId) {
this.referenceId = referenceId;
}
public String getReferenceId( ) {
return this.referenceId;
}
public void setResult(TuitionISVResult result) {
this.result = result;
}
public TuitionISVResult getResult( ) {
return this.result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy