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

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

There is a newer version: 1.10.85
Show newest version
package com.pdd.pop.sdk.http.api.ark.response;

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




public class PddWmsDepotTicketNotifyResponse extends PopBaseHttpResponse {

    /**
     * response
     */
    @JsonProperty("response")
    private Response response;

    public Response getResponse() {
        return response;
    }

    public static class Response {

        /**
         * 是否成功
         */
        @JsonProperty("success")
        private Boolean success;

        /**
         * 错误码
         */
        @JsonProperty("errorCode")
        private Integer errorCode;

        /**
         * 错误信息
         */
        @JsonProperty("errorMsg")
        private String errorMsg;

        /**
         * 返回结果
         */
        @JsonProperty("result")
        private Boolean result;

        public Boolean getSuccess() {
            return success;
        }

        public Integer getErrorCode() {
            return errorCode;
        }

        public String getErrorMsg() {
            return errorMsg;
        }

        public Boolean getResult() {
            return result;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy