Struct google_qpxexpress1::Data [] [src]

pub struct Data {
    pub city: Option<Vec<CityData>>,
    pub kind: Option<String>,
    pub carrier: Option<Vec<CarrierData>>,
    pub airport: Option<Vec<AirportData>>,
    pub tax: Option<Vec<TaxData>>,
    pub aircraft: Option<Vec<AircraftData>>,
}

Detailed information about components found in the solutions of this response, including a trip's airport, city, taxes, airline, and aircraft.

This type is not used in any activity, and only used as part of another schema.

Fields

The city that is either the origin or destination of part of a trip.

Identifies this as QPX Express response resource, including a trip's airport, city, taxes, airline, and aircraft. Value: the fixed string qpxexpress#data.

The airline carrier of the aircraft flying between an origin and destination. Allowed values are IATA carrier codes.

The airport of an origin or destination.

The taxes due for flying between an origin and a destination.

The aircraft that is flying between an origin and destination.

Trait Implementations

impl Debug for Data
[src]

Formats the value using the given formatter.

impl Clone for Data
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Data
[src]

Returns the "default value" for a type. Read more

impl Part for Data
[src]