export interface Fare { fare_id: string; price: string; currency_type: string; payment_method: string; transfers: string; transfer_duration: string; } export interface Destination { sample_trip_id: string; from_stop_id: string; to_stop_id: string; destination_city: string; destination_name: string; route_code: string; fare: Fare; url?: any; }