We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 152ce8e commit f5cfd2dCopy full SHA for f5cfd2d
CustomerProfiles/create-customer-payment-profile.py
@@ -19,8 +19,8 @@ def create_customer_payment_profile(customerProfileId):
19
payment.creditCard = creditCard
20
21
billTo = apicontractsv1.customerAddressType()
22
- billTo.firstName = "John" + random.randint(0, 10000)
23
- billTo.lastName = "Snow" + random.randint(0, 10000)
+ billTo.firstName = "John" + str(random.randint(0, 10000))
+ billTo.lastName = "Snow" + str(random.randint(0, 10000))
24
25
profile = apicontractsv1.customerPaymentProfileType()
26
profile.payment = payment
0 commit comments