File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed
Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 66constants = imp .load_source ('modulename' , 'constants.py' )
77from decimal import *
88
9- def create_visa_checkout_transaction ():
9+ def create_visa_src_transaction ():
1010
1111 merchantAuth = apicontractsv1 .merchantAuthenticationType ()
1212 merchantAuth .name = constants .apiLoginId
@@ -60,4 +60,4 @@ def create_visa_checkout_transaction():
6060 return response
6161
6262if (os .path .basename (__file__ ) == os .path .basename (sys .argv [0 ])):
63- create_visa_checkout_transaction ()
63+ create_visa_src_transaction ()
Original file line number Diff line number Diff line change 55from authorizenet .apicontrollers import *
66constants = imp .load_source ('modulename' , 'constants.py' )
77
8- def decrypt_visa_checkout_data ():
8+ def decrypt_visa_src_data ():
99 merchantAuth = apicontractsv1 .merchantAuthenticationType ()
1010 merchantAuth .name = constants .apiLoginId
1111 merchantAuth .transactionKey = constants .transactionKey
@@ -38,4 +38,4 @@ def decrypt_visa_checkout_data():
3838 return response
3939
4040if (os .path .basename (__file__ ) == os .path .basename (sys .argv [0 ])):
41- decrypt_visa_checkout_data ()
41+ decrypt_visa_src_data ()
Original file line number Diff line number Diff line change @@ -49,9 +49,9 @@ get_transaction_details 1 0
4949get_transaction_list 1 1
5050get_transaction_list_for_customer 1 1
5151get_unsettled_transaction_list 1 0
52- create_visa_checkout_transaction 1 0
53- decrypt_visa_checkout_data 1 0
54- get_customer_profile_ids 1 1
52+ create_visa_src_transaction 1 0
53+ decrypt_visa_src_data 1 0
54+ get_customer_profile_ids 1 0
5555get_customer_payment_profile_list 1 1
5656get_merchant_details 0 1
5757update_held_transaction 0 0
Original file line number Diff line number Diff line change @@ -578,15 +578,15 @@ def get_unsettled_transaction_list(self):
578578 modl = imp .load_source ('modulename' , 'TransactionReporting/get-unsettled-transaction-list.py' )
579579 return modl .get_unsettled_transaction_list ()
580580
581- def create_visa_checkout_transaction (self ):
582- print ("create_visa_checkout_transaction " )
581+ def create_visa_src_transaction (self ):
582+ print ("create_visa_src_transaction " )
583583 modl = imp .load_source ('modulename' , 'VisaCheckout/create-visa-checkout-transaction.py' )
584- return modl .create_visa_checkout_transaction ()
584+ return modl .create_visa_src_transaction ()
585585
586- def decrypt_visa_checkout_data (self ):
587- print ("decrypt_visa_checkout_data " )
586+ def decrypt_visa_src_data (self ):
587+ print ("decrypt_visa_src_data " )
588588 modl = imp .load_source ('modulename' , 'VisaCheckout/decrypt-visa-checkout-data.py' )
589- return modl .decrypt_visa_checkout_data ()
589+ return modl .decrypt_visa_src_data ()
590590
591591 def get_merchant_details (self ):
592592 print ("get_merchant_details" )
You can’t perform that action at this time.
0 commit comments