mav-api-ts
Version:
Unofficial, experimental MÁV API library based on the requests by jegy.mav.hu
14 lines (13 loc) • 338 B
TypeScript
export interface Station {
id: number;
isAlias: boolean;
name: string | null;
code: string | null;
baseCode: string | null;
isInternational: boolean;
canUseForOfferRequest: boolean;
canUseForPessengerInformation: boolean;
country: string | null;
coutryIso: string | null;
isIn108_1: boolean;
}