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

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

    /**
     * 状态码
     */
    @JsonProperty("code")
    private Integer code;

    /**
     * 状态原因
     */
    @JsonProperty("message")
    private String message;

    /**
     * 回执id
     */
    @JsonProperty("biz_id")
    private String bizId;

    public Integer getCode() {
        return code;
    }

    public String getMessage() {
        return message;
    }

    public String getBizId() {
        return bizId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy