Skip to content

Commit 4b4f601

Browse files
committed
Updated dates
1 parent 1a4ea81 commit 4b4f601

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

RecurringBilling/create-subscription-from-customer-profile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def create_subscription_from_customer_profile(amount, days, profileId, paymentPr
1818
paymentschedule.interval = apicontractsv1.paymentScheduleTypeInterval() #apicontractsv1.CTD_ANON() #modified by krgupta
1919
paymentschedule.interval.length = days
2020
paymentschedule.interval.unit = apicontractsv1.ARBSubscriptionUnitEnum.days
21-
paymentschedule.startDate = datetime(2020, 12, 30)
21+
paymentschedule.startDate = datetime(2021, 12, 30)
2222
paymentschedule.totalOccurrences = 12
2323
paymentschedule.trialOccurrences = 1
2424

RecurringBilling/create-subscription.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def create_subscription(amount, days):
1818
paymentschedule.interval = apicontractsv1.paymentScheduleTypeInterval() #apicontractsv1.CTD_ANON() #modified by krgupta
1919
paymentschedule.interval.length = days
2020
paymentschedule.interval.unit = apicontractsv1.ARBSubscriptionUnitEnum.days
21-
paymentschedule.startDate = datetime(2020, 12, 30)
21+
paymentschedule.startDate = datetime(2021, 12, 30)
2222
paymentschedule.totalOccurrences = 12
2323
paymentschedule.trialOccurrences = 1
2424
# Giving the credit card info

0 commit comments

Comments
 (0)