com.alipay.api.response.AlipayAssetPointPointprodBudgetlibCreateResponse 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.AlipayResponse;
/**
* ALIPAY API: alipay.asset.point.pointprod.budgetlib.create response.
*
* @author auto create
* @since 1.0, 2024-07-04 15:51:37
*/
public class AlipayAssetPointPointprodBudgetlibCreateResponse extends AlipayResponse {
private static final long serialVersionUID = 8135773573719235229L;
/**
* 预算库余额
*/
@ApiField("balance")
private String balance;
/**
* 预算库编码
*/
@ApiField("budget_code")
private String budgetCode;
/**
* 消息原因,当借口异常时返回异常原因,如幂等异常时,返回原业务号对应的预算库编码
*/
@ApiField("message")
private String message;
public void setBalance(String balance) {
this.balance = balance;
}
public String getBalance( ) {
return this.balance;
}
public void setBudgetCode(String budgetCode) {
this.budgetCode = budgetCode;
}
public String getBudgetCode( ) {
return this.budgetCode;
}
public void setMessage(String message) {
this.message = message;
}
public String getMessage( ) {
return this.message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy