Skip to content

Commit 597369f

Browse files
Rename get-transaction-list-for-customer
Update and rename get-transaction-list-for-customer.py to get-customer-profile-transaction-list.py for review on AuthorizeNet#71
1 parent 742bea8 commit 597369f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

TransactionReporting/get-transaction-list-for-customer.py renamed to TransactionReporting/get-customer-profile-transaction-list.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
constants = imp.load_source('modulename', 'constants.py')
77
from decimal import *
88

9-
def get_transaction_list_for_customer(customerProfileId):
9+
def get_customer_profile_transaction_list(customerProfileId):
1010
merchantAuth = apicontractsv1.merchantAuthenticationType()
1111
merchantAuth.name = constants.apiLoginId
1212
merchantAuth.transactionKey = constants.transactionKey
@@ -41,4 +41,4 @@ def get_transaction_list_for_customer(customerProfileId):
4141
return transactionListForCustomerResponse
4242

4343
if(os.path.basename(__file__) == os.path.basename(sys.argv[0])):
44-
get_transaction_list_for_customer('36152127')
44+
get_customer_profile_transaction_list('36152127')

0 commit comments

Comments
 (0)