Struct google_qpxexpress1::PassengerCounts [] [src]

pub struct PassengerCounts {
    pub infant_in_lap_count: Option<i32>,
    pub kind: Option<String>,
    pub infant_in_seat_count: Option<i32>,
    pub adult_count: Option<i32>,
    pub senior_count: Option<i32>,
    pub child_count: Option<i32>,
}

The number and type of passengers. Unfortunately the definition of an infant, child, adult, and senior citizen varies across carriers and reservation systems.

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

Fields

The number of passengers that are infants travelling in the lap of an adult.

Identifies this as a passenger count object, representing the number of passengers. Value: the fixed string qpxexpress#passengerCounts.

The number of passengers that are infants each assigned a seat.

The number of passengers that are adults.

The number of passengers that are senior citizens.

The number of passengers that are children.

Trait Implementations

impl Debug for PassengerCounts
[src]

Formats the value using the given formatter.

impl Clone for PassengerCounts
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for PassengerCounts
[src]

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

impl Part for PassengerCounts
[src]