com.alipay.api.response.MyxiaojinFinanceAtsbudgetBbaremainamountQueryResponse 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.BizBudgetApplyAmountDTO;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: myxiaojin.finance.atsbudget.bbaremainamount.query response.
*
* @author auto create
* @since 1.0, 2023-08-24 23:01:44
*/
public class MyxiaojinFinanceAtsbudgetBbaremainamountQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 6877681311175552176L;
/**
* BBA可用、剩余金额
*/
@ApiField("result_data")
private BizBudgetApplyAmountDTO resultData;
/**
* 错误的详细信息,用于具体描述错误信息
*/
@ApiField("result_msg")
private String resultMsg;
public void setResultData(BizBudgetApplyAmountDTO resultData) {
this.resultData = resultData;
}
public BizBudgetApplyAmountDTO getResultData( ) {
return this.resultData;
}
public void setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
}
public String getResultMsg( ) {
return this.resultMsg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy