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

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

There is a newer version: 1.10.85
Show 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 PddFlightChangePayResponse extends PopBaseHttpResponse {

    /**
     * 
     */
    @JsonProperty("flight_change_pay_response")
    private FlightChangePayResponse flightChangePayResponse;

    public FlightChangePayResponse getFlightChangePayResponse() {
        return flightChangePayResponse;
    }

    public static class FlightChangePayResponse {

        /**
         * 
         */
        @JsonProperty("trace_id")
        private String traceId;

        /**
         * 
         */
        @JsonProperty("sub_trace_id")
        private String subTraceId;

        /**
         * 改签单状态
         */
        @JsonProperty("change_apply_status")
        private Integer changeApplyStatus;

        public String getTraceId() {
            return traceId;
        }

        public String getSubTraceId() {
            return subTraceId;
        }

        public Integer getChangeApplyStatus() {
            return changeApplyStatus;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy