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

com.pdd.pop.sdk.http.api.pop.response.PddRefundStatusCheckResponse Maven / Gradle / Ivy

package com.pdd.pop.sdk.http.api.pop.response;

import com.pdd.pop.ext.fasterxml.jackson.annotation.JsonProperty;
import com.pdd.pop.sdk.http.PopBaseHttpResponse;

import java.util.List;



public class PddRefundStatusCheckResponse extends PopBaseHttpResponse {

    /**
     * response
     */
    @JsonProperty("refund_status_check_response")
    private RefundStatusCheckResponse refundStatusCheckResponse;

    public RefundStatusCheckResponse getRefundStatusCheckResponse() {
        return refundStatusCheckResponse;
    }

    public static class RefundStatusCheckResponse {

        /**
         * 存在售后的订单
         */
        @JsonProperty("order_sns_exists_refund")
        private List orderSnsExistsRefund;

        public List getOrderSnsExistsRefund() {
            return orderSnsExistsRefund;
        }
    }

    public static class RefundStatusCheckResponseOrderSnsExistsRefundItem {

        /**
         * 订单编号
         */
        @JsonProperty("order_sn")
        private String orderSn;

        public String getOrderSn() {
            return orderSn;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy