Sha256: 3b8166cb36675445cb2d1930bf9c2be5dd732b5249c37388959386530797ff03
Contents?: true
Size: 530 Bytes
Versions: 18
Compression:
Stored size: 530 Bytes
Contents
module Iyzipay module Model class InstallmentPrices def self.to_pki_string(request) unless request.nil? installment_prices = Array.new request.each do |item| item_pki = PkiBuilder.new. append(:installmentNumber, item[:installmentNumber]). append_price(:totalPrice, item[:totalPrice]). get_request_string installment_prices << item_pki end installment_prices end end end end end
Version data entries
18 entries across 18 versions & 5 rubygems