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

com.pdd.pop.sdk.http.api.ark.response.PddTrainConfirmChangeResponse Maven / Gradle / Ivy

package com.pdd.pop.sdk.http.api.ark.response;

import com.pdd.pop.ext.fasterxml.jackson.annotation.JsonProperty;
import com.pdd.pop.sdk.http.PopBaseHttpResponse;




public class PddTrainConfirmChangeResponse extends PopBaseHttpResponse {

    /**
     * 商家订单号
     */
    @JsonProperty("order_id")
    private String orderId;

    /**
     * 改签后新的商家子单号
     */
    @JsonProperty("new_sub_order_id")
    private String newSubOrderId;

    /**
     * 老的商家子单号
     */
    @JsonProperty("old_sub_order_id")
    private String oldSubOrderId;

    /**
     * 错误码
     */
    @JsonProperty("error_code")
    private Integer errorCode;

    /**
     * 错误信息
     */
    @JsonProperty("error_msg")
    private String errorMsg;

    public String getOrderId() {
        return orderId;
    }

    public String getNewSubOrderId() {
        return newSubOrderId;
    }

    public String getOldSubOrderId() {
        return oldSubOrderId;
    }

    public Integer getErrorCode() {
        return errorCode;
    }

    public String getErrorMsg() {
        return errorMsg;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy