Class: BankTransfer

Inherits:
Base
  • Object
show all
Defined in:
lib/flutterwave_sdk/flutterwave_objects/bank_transfer.rb

Instance Attribute Summary

Attributes inherited from Base

#flutterwave_object

Instance Method Summary collapse

Methods inherited from Base

#check_passed_parameters, #delete_request, #get_request, #initialize, #post_request, #put_request

Constructor Details

This class inherits a constructor from Base

Instance Method Details

#initiate_charge(data) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/flutterwave_sdk/flutterwave_objects/bank_transfer.rb', line 5

def initiate_charge(data)
    base_url = flutterwave_object.base_url 
    
    # only update the payload with the transaction reference if it isn't already added to the payload
    if !data.key?("tx_ref")
        data.merge!({"tx_ref" => Util.transaction_reference_generator})
    end
    # check the currency to determine the type and the required parameters 
    required_parameters = ["amount", "duration", "email", "phone_number", "frequency", "narration", "is_permanent", "tx_ref", "currency"]

    check_passed_parameters(required_parameters, data)
    type = "bank_transfer"
    payload = data.to_json

    response = post_request("#{base_url}#{BASE_ENDPOINTS::CHARGE_ENDPOINT}?type=#{type}", payload) 
    return response
end

#verify_charge(id) ⇒ Object

mthod to verify transaction



24
25
26
27
28
29
# File 'lib/flutterwave_sdk/flutterwave_objects/bank_transfer.rb', line 24

def verify_charge(id)
    base_url = flutterwave_object.base_url 

    response = get_request("#{base_url}/transactions/#{id}/verify")
    return response
end