com.alipay.api.domain.AntfortuneYebAssetTradeUnfreezeModel 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 解冻余额宝资产
*
* @author auto create
* @since 1.0, 2023-03-03 16:31:51
*/
public class AntfortuneYebAssetTradeUnfreezeModel extends AlipayObject {
private static final long serialVersionUID = 8549551751295533816L;
/**
* 金额
*/
@ApiField("amount")
private String amount;
/**
* 冻结码
*/
@ApiField("freeze_code")
private String freezeCode;
/**
* 用户UserId在应用AppId下的唯一用户标识
*/
@ApiField("open_id")
private String openId;
/**
* 外部业务号
*/
@ApiField("out_biz_no")
private String outBizNo;
/**
* 蚂蚁统一会员ID
*/
@ApiField("user_id")
private String userId;
public String getAmount() {
return this.amount;
}
public void setAmount(String amount) {
this.amount = amount;
}
public String getFreezeCode() {
return this.freezeCode;
}
public void setFreezeCode(String freezeCode) {
this.freezeCode = freezeCode;
}
public String getOpenId() {
return this.openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getOutBizNo() {
return this.outBizNo;
}
public void setOutBizNo(String outBizNo) {
this.outBizNo = outBizNo;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy