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

com.pdd.pop.sdk.http.api.pop.response.PddExpressMallDepotSimpleGetResponse 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;

import java.util.List;



public class PddExpressMallDepotSimpleGetResponse extends PopBaseHttpResponse {

    /**
     * response
     */
    @JsonProperty("open_api_response")
    private List openApiResponse;

    public List getOpenApiResponse() {
        return openApiResponse;
    }

    public static class OpenApiResponseItem {

        /**
         * 仓库Id
         */
        @JsonProperty("depot_id")
        private Long depotId;

        /**
         * 仓库id的string表示
         */
        @JsonProperty("depot_str")
        private String depotStr;

        /**
         * 仓库名称
         */
        @JsonProperty("name")
        private String name;

        /**
         * 仓库类型(暂时1表示自建仓)
         */
        @JsonProperty("depot_type")
        private Integer depotType;

        public Long getDepotId() {
            return depotId;
        }

        public String getDepotStr() {
            return depotStr;
        }

        public String getName() {
            return name;
        }

        public Integer getDepotType() {
            return depotType;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy