Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AirportInfo

import type { AirportInfo } from "https://googleapis.deno.dev/v1/walletobjects:v1.ts";
interface AirportInfo {
airportIataCode?: string;
airportNameOverride?: LocalizedString;
gate?: string;
kind?: string;
terminal?: string;
}

§Properties

§
airportIataCode?: string
[src]

Three character IATA airport code. This is a required field for origin and destination. Eg: "SFO"

§
airportNameOverride?: LocalizedString
[src]

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?: string
[src]

A name of the gate. Eg: "B59" or "59"

§
kind?: string
[src]

Identifies what kind of resource this is. Value: the fixed string "walletobjects#airportInfo".

§
terminal?: string
[src]

Terminal name. Eg: "INTL" or "I"