UNPKG

iyzipay

Version:
18 lines (13 loc) 444 B
'use strict'; var BkmInstallmentPrice = require('./BkmInstallmentPrice'); function BkmInstallment() { } BkmInstallment.body = function (data) { return typeof data !== 'undefined' ? { bankId: data["bankId"], installmentPrices: data["installmentPrices"].map(function (bkmInstallmentPrice) { return BkmInstallmentPrice.body(bkmInstallmentPrice); }) } : undefined }; module.exports = BkmInstallment;