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

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

package com.alipay.api.response;

import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.RefundDescriptionDTO;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: koubei.catering.order.refund response.
 * 
 * @author auto create
 * @since 1.0, 2024-07-04 19:36:31
 */
public class KoubeiCateringOrderRefundResponse extends AlipayResponse {

	private static final long serialVersionUID = 5873363794869281234L;

	/** 
	 * 扩展信息,json对象格式,key和value都为字符串
	 */
	@ApiField("ext_info")
	private String extInfo;

	/** 
	 * 口碑端订单号
	 */
	@ApiField("order_id")
	private String orderId;

	/** 
	 * 外部订单号
	 */
	@ApiField("out_biz_no")
	private String outBizNo;

	/** 
	 * 退款明细列表
	 */
	@ApiListField("refund_description_list")
	@ApiField("refund_description_d_t_o")
	private List refundDescriptionList;

	/** 
	 * 口碑退款单id
	 */
	@ApiField("refund_id")
	private String refundId;

	/** 
	 * 是否需要重试,true-需要,false-不需要
	 */
	@ApiField("retry")
	private Boolean retry;

	public void setExtInfo(String extInfo) {
		this.extInfo = extInfo;
	}
	public String getExtInfo( ) {
		return this.extInfo;
	}

	public void setOrderId(String orderId) {
		this.orderId = orderId;
	}
	public String getOrderId( ) {
		return this.orderId;
	}

	public void setOutBizNo(String outBizNo) {
		this.outBizNo = outBizNo;
	}
	public String getOutBizNo( ) {
		return this.outBizNo;
	}

	public void setRefundDescriptionList(List refundDescriptionList) {
		this.refundDescriptionList = refundDescriptionList;
	}
	public List getRefundDescriptionList( ) {
		return this.refundDescriptionList;
	}

	public void setRefundId(String refundId) {
		this.refundId = refundId;
	}
	public String getRefundId( ) {
		return this.refundId;
	}

	public void setRetry(Boolean retry) {
		this.retry = retry;
	}
	public Boolean getRetry( ) {
		return this.retry;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy