com.github.debugthug.xo.flightInfo.FlightInformationRS Maven / Gradle / Ivy
package com.github.debugthug.xo.flightInfo;
import com.github.debugthug.xo.Errors;
import com.github.debugthug.xo.Flight;
import com.thoughtworks.xstream.annotations.XStreamAlias;
@XStreamAlias("FlightInformationRS")
public class FlightInformationRS {
@XStreamAlias("Flight")
private Flight flight;
@XStreamAlias("Errors")
private Errors errors;
public Flight getFlight() {
return flight;
}
public void setFlight(Flight flight) {
this.flight = flight;
}
public Errors getErrors() {
return errors;
}
public void setErrors(Errors errors) {
this.errors = errors;
}
}