pub struct AirportInfo {
pub airport_iata_code: Option<String>,
pub airport_name_override: Option<LocalizedString>,
pub gate: Option<String>,
pub kind: Option<String>,
pub terminal: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§airport_iata_code: Option<String>Three character IATA airport code. This is a required field for origin and destination. Eg: “SFO”
airport_name_override: Option<LocalizedString>Optional field that overrides the airport city name defined by IATA. By default, Google takes the airportIataCode provided and maps it to the official airport city name defined by IATA. Official IATA airport city names can be found at IATA airport city names website. For example, for the airport IATA code “LTN”, IATA website tells us that the corresponding airport city is “London”. If this field is not populated, Google would display “London”. However, populating this field with a custom name (eg: “London Luton”) would override it.
gate: Option<String>A name of the gate. Eg: “B59” or “59”
kind: Option<String>Identifies what kind of resource this is. Value: the fixed string "walletobjects#airportInfo".
terminal: Option<String>Terminal name. Eg: “INTL” or “I”
Trait Implementations§
Source§impl Clone for AirportInfo
impl Clone for AirportInfo
Source§fn clone(&self) -> AirportInfo
fn clone(&self) -> AirportInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more