Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/adapay/response/PaymentRefundResponse.java

32 lines
681 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.jsowell.adapay.response;
import com.jsowell.adapay.common.RefundInfo;
import lombok.*;
import java.util.List;
/**
* 查询退款对象response
*/
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class PaymentRefundResponse extends AdapayBaseResponse{
/**
* 是否 prod模式true 是 prod模式false 是 mock模式
*/
private String prod_mode;
/**
* 退款对象列表,若未查询到结果时,字段为空
*/
private List<RefundInfo> refunds;
/**
* 当发生参数错误时返回具体的参数名,便于定位错误原因,详见 错误
*/
private String invalid_param;
}