mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-22 14:12:07 +00:00
14 lines
268 B
JavaScript
14 lines
268 B
JavaScript
'use strict';
|
|
|
|
const utils = require('../consts');
|
|
|
|
module.exports = (start = null, end = null) => ({
|
|
version: 'h004',
|
|
orderDetails: {
|
|
OrderType: 'Z53',
|
|
OrderAttribute: 'DZHNN',
|
|
StandardOrderParams: utils.dateRange(start, end),
|
|
},
|
|
operation: 'download',
|
|
});
|