Skip to content

Commit 1a4ea81

Browse files
committed
Updated dates
1 parent 6c54873 commit 1a4ea81

9 files changed

Lines changed: 9 additions & 9 deletions

CustomerProfiles/create-customer-payment-profile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def create_customer_payment_profile(customerProfileId):
1212

1313
creditCard = apicontractsv1.creditCardType()
1414
creditCard.cardNumber = "4111111111111111"
15-
creditCard.expirationDate = "2020-12"
15+
creditCard.expirationDate = "2035-12"
1616

1717
payment = apicontractsv1.paymentType()
1818
payment.creditCard = creditCard

CustomerProfiles/update-customer-payment-profile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def update_customer_payment_profile(customerProfileId, customerPaymentProfileId)
1212

1313
creditCard = apicontractsv1.creditCardType()
1414
creditCard.cardNumber = "4111111111111111"
15-
creditCard.expirationDate = "2020-12"
15+
creditCard.expirationDate = "2035-12"
1616

1717
payment = apicontractsv1.paymentType()
1818
payment.creditCard = creditCard

PaymentTransactions/authorize-credit-card.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def authorize_credit_card(amount):
2626
# Create the payment data for a credit card
2727
creditCard = apicontractsv1.creditCardType()
2828
creditCard.cardNumber = "4111111111111111"
29-
creditCard.expirationDate = "2020-12"
29+
creditCard.expirationDate = "2035-12"
3030
creditCard.cardCode = "123"
3131

3232
# Add the payment data to a paymentType object

PaymentTransactions/capture-funds-authorized-through-another-channel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def capture_funds_authorized_through_another_channel():
1717

1818
creditCard = apicontractsv1.creditCardType()
1919
creditCard.cardNumber = "4111111111111111"
20-
creditCard.expirationDate = "2020-12"
20+
creditCard.expirationDate = "2035-12"
2121

2222
payment = apicontractsv1.paymentType()
2323
payment.creditCard = creditCard

PaymentTransactions/charge-credit-card.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def charge_credit_card(amount):
2626
# Create the payment data for a credit card
2727
creditCard = apicontractsv1.creditCardType()
2828
creditCard.cardNumber = "4111111111111111"
29-
creditCard.expirationDate = "2020-12"
29+
creditCard.expirationDate = "2035-12"
3030
creditCard.cardCode = "123"
3131

3232
# Add the payment data to a paymentType object

PaymentTransactions/charge-tokenized-credit-card.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def charge_tokenized_credit_card():
1313

1414
creditCard = apicontractsv1.creditCardType()
1515
creditCard.cardNumber = "4111111111111111"
16-
creditCard.expirationDate = "2020-12"
16+
creditCard.expirationDate = "2035-12"
1717
# Set the token specific info
1818
creditCard.isPaymentToken = True
1919
creditCard.cryptogram = "EjRWeJASNFZ4kBI0VniQEjRWeJA="

PaymentTransactions/create-chase-pay-transaction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def create_chase_pay_transaction():
1313

1414
creditCard = apicontractsv1.creditCardType()
1515
creditCard.cardNumber = "4111111111111111"
16-
creditCard.expirationDate = "2020-12"
16+
creditCard.expirationDate = "2035-12"
1717
creditCard.cardCode="999"
1818
# Set the token specific info
1919
creditCard.isPaymentToken = True

RecurringBilling/create-subscription.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def create_subscription(amount, days):
2424
# Giving the credit card info
2525
creditcard = apicontractsv1.creditCardType()
2626
creditcard.cardNumber = "4111111111111111"
27-
creditcard.expirationDate = "2020-12"
27+
creditcard.expirationDate = "2035-12"
2828
payment = apicontractsv1.paymentType()
2929
payment.creditCard = creditcard
3030
# Setting billing information

RecurringBilling/update-subscription.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def update_subscription(subscriptionId):
1212

1313
creditcard = apicontractsv1.creditCardType()
1414
creditcard.cardNumber = "4111111111111111"
15-
creditcard.expirationDate = "2020-12"
15+
creditcard.expirationDate = "2035-12"
1616

1717
payment = apicontractsv1.paymentType()
1818
payment.creditCard = creditcard

0 commit comments

Comments
 (0)