com.alipay.api.response.AlipayEbppIndustrySupervisionOrderfundUnfreezeResponse 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.ebpp.industry.supervision.orderfund.unfreeze response.
*
* @author auto create
* @since 1.0, 2024-12-12 15:02:51
*/
public class AlipayEbppIndustrySupervisionOrderfundUnfreezeResponse extends AlipayResponse {
private static final long serialVersionUID = 7328272814225551656L;
/**
* 订单金额,整数,单位分
*/
@ApiField("amount")
private String amount;
/**
* 币种
*/
@ApiField("currency")
private String currency;
/**
* 请求参数中的外部流水号
*/
@ApiField("out_flow_id")
private String outFlowId;
/**
* 请求参数中的外部订单号
*/
@ApiField("relation_out_order_no")
private String relationOutOrderNo;
public void setAmount(String amount) {
this.amount = amount;
}
public String getAmount( ) {
return this.amount;
}
public void setCurrency(String currency) {
this.currency = currency;
}
public String getCurrency( ) {
return this.currency;
}
public void setOutFlowId(String outFlowId) {
this.outFlowId = outFlowId;
}
public String getOutFlowId( ) {
return this.outFlowId;
}
public void setRelationOutOrderNo(String relationOutOrderNo) {
this.relationOutOrderNo = relationOutOrderNo;
}
public String getRelationOutOrderNo( ) {
return this.relationOutOrderNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy