interface TransitFare {
    currency: string;
    text: string;
    value: number;
}

Properties

Properties

currency: string

An ISO 4217 currency code indicating the currency that the amount is expressed in.

text: string

The total fare amount, formatted in the requested language.

value: number

The total fare amount, in the currency specified above.