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

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




public class PddGoodsSubmitGoodsCommitResponse extends PopBaseHttpResponse {

    /**
     * 返回response
     */
    @JsonProperty("goods_update_response")
    private GoodsUpdateResponse goodsUpdateResponse;

    public GoodsUpdateResponse getGoodsUpdateResponse() {
        return goodsUpdateResponse;
    }

    public static class GoodsUpdateResponse {

        /**
         * 提交申请的序列id
         */
        @JsonProperty("goods_commit_id")
        private Long goodsCommitId;

        /**
         * 商品id
         */
        @JsonProperty("goods_id")
        private Long goodsId;

        public Long getGoodsCommitId() {
            return goodsCommitId;
        }

        public Long getGoodsId() {
            return goodsId;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy