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

com.alipay.api.response.AlipayCommerceTransportEtcSettlementReverseResponse 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: alipay.commerce.transport.etc.settlement.reverse response.
 * 
 * @author auto create
 * @since 1.0, 2024-08-09 18:41:14
 */
public class AlipayCommerceTransportEtcSettlementReverseResponse extends AlipayResponse {

	private static final long serialVersionUID = 3566584614615439324L;

	/** 
	 * 商户行程单id
	 */
	@ApiField("out_order_id")
	private String outOrderId;

	/** 
	 * 交易状态:仅“C”代表撤销完成,其他参考交易状态
"I":"待支付,未撤销完成";
"PI":"支付中,未撤销完成";
"S":"支付成功,未撤销完成";
"F":"支付失败,未撤销完成";
"RI":"退款中,不支持撤销";
"R":"已退款,不支持撤销";
"C":"已撤销,说明撤销完成";
*/ @ApiField("trade_status") private String tradeStatus; public void setOutOrderId(String outOrderId) { this.outOrderId = outOrderId; } public String getOutOrderId( ) { return this.outOrderId; } public void setTradeStatus(String tradeStatus) { this.tradeStatus = tradeStatus; } public String getTradeStatus( ) { return this.tradeStatus; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy