db-vendo-client/format/stop-req.js

14 lines
204 B
JavaScript
Raw Permalink Normal View History

2019-10-31 20:08:56 +01:00
const formatStopReq = (ctx, stopRef) => {
return {
2021-10-26 14:15:17 +02:00
// todo: there's also `StationDetails`, are there differences?
2019-10-31 20:08:56 +01:00
meth: 'LocDetails',
req: {
locL: [stopRef]
}
}
}
2022-05-07 16:17:37 +02:00
export {
formatStopReq,
}