com.alipay.api.response.MybankCreditSupplychainCreditpaySellerunsignCreateResponse 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: mybank.credit.supplychain.creditpay.sellerunsign.create response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:39:07
*/
public class MybankCreditSupplychainCreditpaySellerunsignCreateResponse extends AlipayResponse {
private static final long serialVersionUID = 1426779237914781571L;
/**
* 失败原因码,解约失败时返回
*/
@ApiField("fail_reason")
private String failReason;
/**
* 是否可重试
*/
@ApiField("retry")
private Boolean retry;
/**
* trace信息
*/
@ApiField("trace_id")
private String traceId;
/**
* 解约结果:true/false
*/
@ApiField("unsign_result")
private Boolean unsignResult;
public void setFailReason(String failReason) {
this.failReason = failReason;
}
public String getFailReason( ) {
return this.failReason;
}
public void setRetry(Boolean retry) {
this.retry = retry;
}
public Boolean getRetry( ) {
return this.retry;
}
public void setTraceId(String traceId) {
this.traceId = traceId;
}
public String getTraceId( ) {
return this.traceId;
}
public void setUnsignResult(Boolean unsignResult) {
this.unsignResult = unsignResult;
}
public Boolean getUnsignResult( ) {
return this.unsignResult;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy