We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1636f8 commit 152ce8eCopy full SHA for 152ce8e
CustomerProfiles/create-customer-payment-profile.py
@@ -1,4 +1,5 @@
1
import os, sys
2
+import random
3
from importlib.machinery import SourceFileLoader
4
5
from authorizenet import apicontractsv1
@@ -18,8 +19,8 @@ def create_customer_payment_profile(customerProfileId):
18
19
payment.creditCard = creditCard
20
21
billTo = apicontractsv1.customerAddressType()
- billTo.firstName = "John"
22
- billTo.lastName = "Snow"
+ billTo.firstName = "John" + random.randint(0, 10000)
23
+ billTo.lastName = "Snow" + random.randint(0, 10000)
24
25
profile = apicontractsv1.customerPaymentProfileType()
26
profile.payment = payment
0 commit comments