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

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

    /**
     * 
     */
    @JsonProperty("flight_callback_confirm_change_response")
    private FlightCallbackConfirmChangeResponse flightCallbackConfirmChangeResponse;

    public FlightCallbackConfirmChangeResponse getFlightCallbackConfirmChangeResponse() {
        return flightCallbackConfirmChangeResponse;
    }

    public static class FlightCallbackConfirmChangeResponse {

        /**
         * 
         */
        @JsonProperty("success")
        private Boolean success;

        public Boolean getSuccess() {
            return success;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy