db-vendo-client/format/stop-req.js
2021-10-26 15:00:08 +02:00

13 lines
222 B
JavaScript

'use strict'
const formatStopReq = (ctx, stopRef) => {
return {
// todo: there's also `StationDetails`, are there differences?
meth: 'LocDetails',
req: {
locL: [stopRef]
}
}
}
module.exports = formatStopReq