interface RailStationResponse {
    area: UnexpandedObject | RailAreaResponse;
    code: string;
    id: string;
    line: UnexpandedObject | RailLineResponse;
    name: string;
    orderNum: number;
    point: {
        coordinates: number[];
        type: "Point";
    };
}

Hierarchy

  • Omit<RailStation, "lineId" | "areaId" | "line" | "area">
    • RailStationResponse

Properties

code: string
id: string
name: string
orderNum: number
point: {
    coordinates: number[];
    type: "Point";
}

Type declaration

  • coordinates: number[]
  • type: "Point"

Generated using TypeDoc