interface Line {
    additionalName?: string;
    adminCode?: string;
    directions?: readonly string[];
    express?: boolean;
    fahrtNr?: string;
    id?: string;
    metro?: boolean;
    mode?:
        | "train"
        | "bus"
        | "watercraft"
        | "taxi"
        | "gondola"
        | "aircraft"
        | "car"
        | "bicycle"
        | "walking";
    name?: string;
    night?: boolean;
    nr?: number;
    operator?: Operator;
    product?: string;
    productName?: string;
    public?: boolean;
    routes?: readonly string[];
    symbol?: string;
    type: "line";
}

Properties

additionalName?: string
adminCode?: string
directions?: readonly string[]
express?: boolean
fahrtNr?: string
id?: string
metro?: boolean
mode?:
    | "train"
    | "bus"
    | "watercraft"
    | "taxi"
    | "gondola"
    | "aircraft"
    | "car"
    | "bicycle"
    | "walking"
name?: string
night?: boolean
nr?: number
operator?: Operator
product?: string
productName?: string
public?: boolean
routes?: readonly string[]

routes ids

symbol?: string
type: "line"