All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.response.MybankCreditSupplychainCreditpayBuyerunsignCreateResponse Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.response;

import com.alipay.api.internal.mapping.ApiField;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: mybank.credit.supplychain.creditpay.buyerunsign.create response.
 * 
 * @author auto create
 * @since 1.0, 2024-07-04 19:39:07
 */
public class MybankCreditSupplychainCreditpayBuyerunsignCreateResponse extends AlipayResponse {

	private static final long serialVersionUID = 4624938397424334141L;

	/** 
	 * 失败原因码:解约失败时返回
	 */
	@ApiField("fail_reason")
	private String failReason;

	/** 
	 * 是否可以重试
	 */
	@ApiField("retry")
	private Boolean retry;

	/** 
	 * 网商日志跟踪ID
	 */
	@ApiField("trace_id")
	private String traceId;

	/** 
	 * 解约结果
	 */
	@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