mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-22 14:12:07 +00:00
f8c9cc7ba8
Signed-off-by: Herman van Hazendonk <github.com@herrie.org>
14 lines
267 B
JavaScript
14 lines
267 B
JavaScript
'use strict';
|
|
|
|
const utils = require('../utils');
|
|
|
|
module.exports = (start = null, end = null) => ({
|
|
version: 'h004',
|
|
orderDetails: {
|
|
OrderType: 'C52',
|
|
OrderAttribute: 'DZHNN',
|
|
StandardOrderParams: utils.dateRange(start, end),
|
|
},
|
|
operation: 'download',
|
|
});
|