gtfs-sqljs
    Preparing search index...

    Interface FareAttribute

    FareAttribute - Fare information for a transit agency's routes

    interface FareAttribute {
        agency_id?: string;
        currency_type: string;
        fare_id: string;
        payment_method: number;
        price: number;
        transfer_duration?: number;
        transfers: number | null;
    }
    Index

    Properties

    agency_id?: string
    currency_type: string
    fare_id: string
    payment_method: number
    price: number
    transfer_duration?: number
    transfers: number | null

    Number of transfers permitted. null means unlimited.