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

Market

import type { Market } from "https://googleapis.deno.dev/v1/travelimpactmodel:v1.ts";

A pair of airports.

interface Market {
destination?: string;
origin?: string;
}

§Properties

§
destination?: string
[src]

Required. IATA airport code for flight destination, e.g. "JFK".

§
origin?: string
[src]

Required. IATA airport code for flight origin, e.g. "LHR".