You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/stripe/resources/checkout/session.rb
+30-3Lines changed: 30 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -354,6 +354,8 @@ class MandateOptions < Stripe::StripeObject
354
354
#
355
355
# When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
356
356
attr_reader:setup_future_usage
357
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
358
+
attr_reader:target_date
357
359
# Bank account verification method.
358
360
attr_reader:verification_method
359
361
end
@@ -411,6 +413,8 @@ class AuBecsDebit < Stripe::StripeObject
411
413
#
412
414
# When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
413
415
attr_reader:setup_future_usage
416
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
417
+
attr_reader:target_date
414
418
end
415
419
416
420
classBacsDebit < Stripe::StripeObject
@@ -428,6 +432,8 @@ class MandateOptions < Stripe::StripeObject
428
432
#
429
433
# When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
430
434
attr_reader:setup_future_usage
435
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
436
+
attr_reader:target_date
431
437
end
432
438
433
439
classBancontact < Stripe::StripeObject
@@ -801,6 +807,8 @@ class MandateOptions < Stripe::StripeObject
801
807
#
802
808
# When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
803
809
attr_reader:setup_future_usage
810
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
811
+
attr_reader:target_date
804
812
end
805
813
806
814
classSofort < Stripe::StripeObject
@@ -853,6 +861,8 @@ class ManualEntry < Stripe::StripeObject
853
861
#
854
862
# When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
855
863
attr_reader:setup_future_usage
864
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
865
+
attr_reader:target_date
856
866
# Bank account verification method.
857
867
attr_reader:verification_method
858
868
end
@@ -1818,18 +1828,22 @@ def initialize(
1818
1828
#
1819
1829
# When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1820
1830
attr_accessor:setup_future_usage
1831
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
1832
+
attr_accessor:target_date
1821
1833
# Verification method for the intent
1822
1834
attr_accessor:verification_method
1823
1835
1824
1836
definitialize(
1825
1837
currency: nil,
1826
1838
mandate_options: nil,
1827
1839
setup_future_usage: nil,
1840
+
target_date: nil,
1828
1841
verification_method: nil
1829
1842
)
1830
1843
@currency=currency
1831
1844
@mandate_options=mandate_options
1832
1845
@setup_future_usage=setup_future_usage
1846
+
@target_date=target_date
1833
1847
@verification_method=verification_method
1834
1848
end
1835
1849
end
@@ -1903,9 +1917,12 @@ class AuBecsDebit < Stripe::RequestParams
1903
1917
#
1904
1918
# When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1905
1919
attr_accessor:setup_future_usage
1920
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
# When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1930
1947
attr_accessor:setup_future_usage
1948
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
# When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
2522
2542
attr_accessor:setup_future_usage
2543
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
# When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
2575
2598
attr_accessor:setup_future_usage
2599
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
Copy file name to clipboardExpand all lines: lib/stripe/resources/order.rb
+20-2Lines changed: 20 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,8 @@ class MandateOptions < Stripe::StripeObject
93
93
#
94
94
# When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
95
95
attr_reader:setup_future_usage
96
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
97
+
attr_reader:target_date
96
98
# Bank account verification method.
97
99
attr_reader:verification_method
98
100
end
@@ -305,6 +307,8 @@ class MandateOptions < Stripe::StripeObject
305
307
#
306
308
# When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
307
309
attr_reader:setup_future_usage
310
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
311
+
attr_reader:target_date
308
312
end
309
313
310
314
classSofort < Stripe::StripeObject
@@ -804,16 +808,20 @@ def initialize(
804
808
#
805
809
# If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`.
806
810
attr_accessor:setup_future_usage
811
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
# If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`.
1175
1183
attr_accessor:setup_future_usage
1184
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
# If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`.
1872
1883
attr_accessor:setup_future_usage
1884
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
# If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`.
2241
2256
attr_accessor:setup_future_usage
2257
+
# Controls when Stripe will attempt to debit the funds from the customer's account. The date must be a string in YYYY-MM-DD format. The date must be in the future and between 3 and 15 calendar days from now.
0 commit comments