File tree 4 files changed +13
-13
lines changed
4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 6
6
constants = imp .load_source ('modulename' , 'constants.py' )
7
7
from decimal import *
8
8
9
- def create_visa_checkout_transaction ():
9
+ def create_visa_src_transaction ():
10
10
11
11
merchantAuth = apicontractsv1 .merchantAuthenticationType ()
12
12
merchantAuth .name = constants .apiLoginId
@@ -60,4 +60,4 @@ def create_visa_checkout_transaction():
60
60
return response
61
61
62
62
if (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 5
5
from authorizenet .apicontrollers import *
6
6
constants = imp .load_source ('modulename' , 'constants.py' )
7
7
8
- def decrypt_visa_checkout_data ():
8
+ def decrypt_visa_src_data ():
9
9
merchantAuth = apicontractsv1 .merchantAuthenticationType ()
10
10
merchantAuth .name = constants .apiLoginId
11
11
merchantAuth .transactionKey = constants .transactionKey
@@ -38,4 +38,4 @@ def decrypt_visa_checkout_data():
38
38
return response
39
39
40
40
if (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
49
49
get_transaction_list 1 1
50
50
get_transaction_list_for_customer 1 1
51
51
get_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
55
55
get_customer_payment_profile_list 1 1
56
56
get_merchant_details 0 1
57
57
update_held_transaction 0 0
Original file line number Diff line number Diff line change @@ -578,15 +578,15 @@ def get_unsettled_transaction_list(self):
578
578
modl = imp .load_source ('modulename' , 'TransactionReporting/get-unsettled-transaction-list.py' )
579
579
return modl .get_unsettled_transaction_list ()
580
580
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 " )
583
583
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 ()
585
585
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 " )
588
588
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 ()
590
590
591
591
def get_merchant_details (self ):
592
592
print ("get_merchant_details" )
You can’t perform that action at this time.
0 commit comments