com.pdd.pop.sdk.http.api.ark.response.PddFlightChangeApplyResponse Maven / Gradle / Ivy
The newest version!
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 PddFlightChangeApplyResponse extends PopBaseHttpResponse {
/**
*
*/
@JsonProperty("flight_change_apply_response")
private FlightChangeApplyResponse flightChangeApplyResponse;
public FlightChangeApplyResponse getFlightChangeApplyResponse() {
return flightChangeApplyResponse;
}
public static class FlightChangeApplyResponse {
/**
* 日志追踪id (用于日志关联)
*/
@JsonProperty("trace_id")
private String traceId;
/**
* 唯一关联当前请求日志追踪id
*/
@JsonProperty("sub_trace_id")
private String subTraceId;
/**
* 改签单状态
*/
@JsonProperty("change_apply_status")
private Integer changeApplyStatus;
/**
* 签名
*/
@JsonProperty("sign")
private String sign;
public String getTraceId() {
return traceId;
}
public String getSubTraceId() {
return subTraceId;
}
public Integer getChangeApplyStatus() {
return changeApplyStatus;
}
public String getSign() {
return sign;
}
}
}