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

com.pdd.pop.sdk.http.api.pop.response.PddMallInfoGetResponse 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 PddMallInfoGetResponse extends PopBaseHttpResponse {

    /**
     * response
     */
    @JsonProperty("mall_info_get_response")
    private MallInfoGetResponse mallInfoGetResponse;

    public MallInfoGetResponse getMallInfoGetResponse() {
        return mallInfoGetResponse;
    }

    public static class MallInfoGetResponse {

        /**
         * 店铺logo
         */
        @JsonProperty("logo")
        private String logo;

        /**
         * 店铺描述
         */
        @JsonProperty("mall_desc")
        private String mallDesc;

        /**
         * 店铺id
         */
        @JsonProperty("mall_id")
        private Long mallId;

        /**
         * 店铺名称
         */
        @JsonProperty("mall_name")
        private String mallName;

        /**
         * 店铺类型,1:个人 2:企业 3:旗舰店 4:专卖店 5:专营店 6:普通店
         */
        @JsonProperty("merchant_type")
        private Integer merchantType;

        public String getLogo() {
            return logo;
        }

        public String getMallDesc() {
            return mallDesc;
        }

        public Long getMallId() {
            return mallId;
        }

        public String getMallName() {
            return mallName;
        }

        public Integer getMerchantType() {
            return merchantType;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy