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

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

There is a newer version: 1.10.85
Show newest version
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;




public class PddWaybillCancelResponse extends PopBaseHttpResponse {

    /**
     * Response
     */
    @JsonProperty("pdd_waybill_cancel_response")
    private InnerPddWaybillCancelResponse pddWaybillCancelResponse;

    public InnerPddWaybillCancelResponse getPddWaybillCancelResponse() {
        return pddWaybillCancelResponse;
    }

    public static class InnerPddWaybillCancelResponse {

        /**
         * 调用取消是否成功
         */
        @JsonProperty("cancel_result")
        private Boolean cancelResult;

        public Boolean getCancelResult() {
            return cancelResult;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy