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

com.pdd.pop.sdk.http.api.pop.request.PddGoodsLatestCommitStatusGetRequest Maven / Gradle / Ivy

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

import com.pdd.pop.ext.fasterxml.jackson.annotation.JsonProperty;
import com.pdd.pop.sdk.http.api.pop.response.PddGoodsLatestCommitStatusGetResponse;
import com.pdd.pop.sdk.http.HttpMethod;
import com.pdd.pop.sdk.http.PopBaseHttpRequest;

import java.util.List;
import java.util.Map;

public class PddGoodsLatestCommitStatusGetRequest extends PopBaseHttpRequest {

    /**
     * 商品id(不超过100个)
     */
    @JsonProperty("goods_id_list")
    private List goodsIdList;

    @Override
    public String getVersion() {
        return "V1";
    }

    @Override
    public String getDataType() {
        return "JSON";
    }

    @Override
    public Integer getPlatform() {
        return 0;
    }

    @Override
    public String getType() {
        return "pdd.goods.latest.commit.status.get";
    }

    @Override
    public HttpMethod getHttpMethod() {
        return HttpMethod.POST;
    }

    @Override
    public Class getResponseClass() {
        return PddGoodsLatestCommitStatusGetResponse.class;
    }

    @Override
    protected void setUserParams(Map params) {
        setUserParam(params, "goods_id_list", goodsIdList);
    }

    public void setGoodsIdList(List goodsIdList) {
        this.goodsIdList = goodsIdList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy