stripe 13.4.0.pre.beta.2 → 13.4.0.pre.beta.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/CONTRIBUTING.md +25 -0
- data/Makefile +2 -0
- data/OPENAPI_VERSION +1 -1
- data/README.md +11 -6
- data/Rakefile +0 -5
- data/VERSION +1 -1
- data/justfile +43 -0
- data/lib/stripe/api_version.rb +1 -1
- data/lib/stripe/resources/account.rb +94 -2
- data/lib/stripe/resources/account_session.rb +95 -5
- data/lib/stripe/resources/billing_portal/configuration.rb +2 -2
- data/lib/stripe/resources/charge.rb +4 -0
- data/lib/stripe/resources/checkout/session.rb +17 -1
- data/lib/stripe/resources/confirmation_token.rb +10 -0
- data/lib/stripe/resources/financial_connections/transaction.rb +1 -1
- data/lib/stripe/resources/payment_intent.rb +46 -0
- data/lib/stripe/resources/payment_method.rb +17 -0
- data/lib/stripe/resources/payment_method_configuration.rb +59 -0
- data/lib/stripe/resources/setup_intent.rb +21 -0
- data/lib/stripe/resources/terminal/configuration.rb +49 -0
- data/lib/stripe/resources/token.rb +19 -0
- data/lib/stripe/services/account_service.rb +92 -2
- data/lib/stripe/services/account_session_service.rb +23 -5
- data/lib/stripe/services/billing_portal/configuration_service.rb +2 -2
- data/lib/stripe/services/checkout/session_service.rb +7 -0
- data/lib/stripe/services/financial_connections/transaction_service.rb +1 -1
- data/lib/stripe/services/payment_intent_service.rb +42 -0
- data/lib/stripe/services/payment_method_configuration_service.rb +42 -0
- data/lib/stripe/services/payment_method_service.rb +14 -0
- data/lib/stripe/services/setup_intent_service.rb +21 -0
- data/lib/stripe/services/terminal/configuration_service.rb +38 -0
- data/lib/stripe/services/test_helpers/confirmation_token_service.rb +7 -0
- data/lib/stripe/services/token_service.rb +19 -0
- data/lib/stripe/stripe_client.rb +6 -1
- data/lib/stripe/stripe_configuration.rb +21 -1
- data/lib/stripe/thin_event.rb +22 -2
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe.rb +22 -0
- data/rbi/stripe/resources/account.rbi +93 -8
- data/rbi/stripe/resources/account_session.rbi +121 -6
- data/rbi/stripe/resources/billing_portal/configuration.rbi +2 -2
- data/rbi/stripe/resources/charge.rbi +4 -0
- data/rbi/stripe/resources/checkout/session.rbi +22 -2
- data/rbi/stripe/resources/confirmation_token.rbi +12 -1
- data/rbi/stripe/resources/financial_connections/transaction.rbi +1 -1
- data/rbi/stripe/resources/payment_intent.rbi +58 -6
- data/rbi/stripe/resources/payment_method.rbi +20 -2
- data/rbi/stripe/resources/payment_method_configuration.rbi +68 -2
- data/rbi/stripe/resources/setup_intent.rbi +24 -3
- data/rbi/stripe/resources/terminal/configuration.rbi +54 -2
- data/rbi/stripe/resources/token.rbi +18 -1
- data/rbi/stripe/services/account_service.rbi +90 -8
- data/rbi/stripe/services/account_session_service.rbi +29 -6
- data/rbi/stripe/services/billing_portal/configuration_service.rbi +2 -2
- data/rbi/stripe/services/checkout/session_service.rbi +10 -1
- data/rbi/stripe/services/financial_connections/transaction_service.rbi +1 -1
- data/rbi/stripe/services/payment_intent_service.rbi +54 -6
- data/rbi/stripe/services/payment_method_configuration_service.rbi +46 -2
- data/rbi/stripe/services/payment_method_service.rbi +16 -2
- data/rbi/stripe/services/setup_intent_service.rbi +24 -3
- data/rbi/stripe/services/terminal/configuration_service.rbi +40 -2
- data/rbi/stripe/services/test_helpers/confirmation_token_service.rbi +10 -1
- data/rbi/stripe/services/token_service.rbi +20 -1
- metadata +4 -2
@@ -626,6 +626,25 @@ module Stripe
|
|
626
626
|
sig { returns(DisplayPreference) }
|
627
627
|
attr_reader :display_preference
|
628
628
|
end
|
629
|
+
class PayByBank < Stripe::StripeObject
|
630
|
+
class DisplayPreference < Stripe::StripeObject
|
631
|
+
# For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
|
632
|
+
sig { returns(T.nilable(T::Boolean)) }
|
633
|
+
attr_reader :overridable
|
634
|
+
# The account's display preference.
|
635
|
+
sig { returns(String) }
|
636
|
+
attr_reader :preference
|
637
|
+
# The effective display preference value.
|
638
|
+
sig { returns(String) }
|
639
|
+
attr_reader :value
|
640
|
+
end
|
641
|
+
# Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
|
642
|
+
sig { returns(T::Boolean) }
|
643
|
+
attr_reader :available
|
644
|
+
# Attribute for field display_preference
|
645
|
+
sig { returns(DisplayPreference) }
|
646
|
+
attr_reader :display_preference
|
647
|
+
end
|
629
648
|
class Paynow < Stripe::StripeObject
|
630
649
|
class DisplayPreference < Stripe::StripeObject
|
631
650
|
# For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
|
@@ -1012,6 +1031,9 @@ module Stripe
|
|
1012
1031
|
# For child configs, the configuration's parent configuration.
|
1013
1032
|
sig { returns(T.nilable(String)) }
|
1014
1033
|
attr_reader :parent
|
1034
|
+
# Attribute for field pay_by_bank
|
1035
|
+
sig { returns(PayByBank) }
|
1036
|
+
attr_reader :pay_by_bank
|
1015
1037
|
# Attribute for field paynow
|
1016
1038
|
sig { returns(Paynow) }
|
1017
1039
|
attr_reader :paynow
|
@@ -1658,6 +1680,24 @@ module Stripe
|
|
1658
1680
|
}
|
1659
1681
|
def initialize(display_preference: nil); end
|
1660
1682
|
end
|
1683
|
+
class PayByBank < Stripe::RequestParams
|
1684
|
+
class DisplayPreference < Stripe::RequestParams
|
1685
|
+
# The account's preference for whether or not to display this payment method.
|
1686
|
+
sig { returns(String) }
|
1687
|
+
attr_accessor :preference
|
1688
|
+
sig { params(preference: String).void }
|
1689
|
+
def initialize(preference: nil); end
|
1690
|
+
end
|
1691
|
+
# Whether or not the payment method should be displayed.
|
1692
|
+
sig {
|
1693
|
+
returns(::Stripe::PaymentMethodConfiguration::CreateParams::PayByBank::DisplayPreference)
|
1694
|
+
}
|
1695
|
+
attr_accessor :display_preference
|
1696
|
+
sig {
|
1697
|
+
params(display_preference: ::Stripe::PaymentMethodConfiguration::CreateParams::PayByBank::DisplayPreference).void
|
1698
|
+
}
|
1699
|
+
def initialize(display_preference: nil); end
|
1700
|
+
end
|
1661
1701
|
class Paynow < Stripe::RequestParams
|
1662
1702
|
class DisplayPreference < Stripe::RequestParams
|
1663
1703
|
# The account's preference for whether or not to display this payment method.
|
@@ -2014,6 +2054,9 @@ module Stripe
|
|
2014
2054
|
# Configuration's parent configuration. Specify to create a child configuration.
|
2015
2055
|
sig { returns(String) }
|
2016
2056
|
attr_accessor :parent
|
2057
|
+
# Pay by bank is a redirect payment method backed by bank transfers. A customer is redirected to their bank to authorize a bank transfer for a given amount. This removes a lot of the error risks inherent in waiting for the customer to initiate a transfer themselves, and is less expensive than card payments.
|
2058
|
+
sig { returns(::Stripe::PaymentMethodConfiguration::CreateParams::PayByBank) }
|
2059
|
+
attr_accessor :pay_by_bank
|
2017
2060
|
# PayNow is a Singapore-based payment method that allows customers to make a payment using their preferred app from participating banks and participating non-bank financial institutions. Check this [page](https://stripe.com/docs/payments/paynow) for more details.
|
2018
2061
|
sig { returns(::Stripe::PaymentMethodConfiguration::CreateParams::Paynow) }
|
2019
2062
|
attr_accessor :paynow
|
@@ -2057,7 +2100,7 @@ module Stripe
|
|
2057
2100
|
sig { returns(::Stripe::PaymentMethodConfiguration::CreateParams::Zip) }
|
2058
2101
|
attr_accessor :zip
|
2059
2102
|
sig {
|
2060
|
-
params(acss_debit: ::Stripe::PaymentMethodConfiguration::CreateParams::AcssDebit, affirm: ::Stripe::PaymentMethodConfiguration::CreateParams::Affirm, afterpay_clearpay: ::Stripe::PaymentMethodConfiguration::CreateParams::AfterpayClearpay, alipay: ::Stripe::PaymentMethodConfiguration::CreateParams::Alipay, alma: ::Stripe::PaymentMethodConfiguration::CreateParams::Alma, amazon_pay: ::Stripe::PaymentMethodConfiguration::CreateParams::AmazonPay, apple_pay: ::Stripe::PaymentMethodConfiguration::CreateParams::ApplePay, apple_pay_later: ::Stripe::PaymentMethodConfiguration::CreateParams::ApplePayLater, au_becs_debit: ::Stripe::PaymentMethodConfiguration::CreateParams::AuBecsDebit, bacs_debit: ::Stripe::PaymentMethodConfiguration::CreateParams::BacsDebit, bancontact: ::Stripe::PaymentMethodConfiguration::CreateParams::Bancontact, blik: ::Stripe::PaymentMethodConfiguration::CreateParams::Blik, boleto: ::Stripe::PaymentMethodConfiguration::CreateParams::Boleto, card: ::Stripe::PaymentMethodConfiguration::CreateParams::Card, cartes_bancaires: ::Stripe::PaymentMethodConfiguration::CreateParams::CartesBancaires, cashapp: ::Stripe::PaymentMethodConfiguration::CreateParams::Cashapp, customer_balance: ::Stripe::PaymentMethodConfiguration::CreateParams::CustomerBalance, eps: ::Stripe::PaymentMethodConfiguration::CreateParams::Eps, expand: T::Array[String], fpx: ::Stripe::PaymentMethodConfiguration::CreateParams::Fpx, giropay: ::Stripe::PaymentMethodConfiguration::CreateParams::Giropay, google_pay: ::Stripe::PaymentMethodConfiguration::CreateParams::GooglePay, gopay: ::Stripe::PaymentMethodConfiguration::CreateParams::Gopay, grabpay: ::Stripe::PaymentMethodConfiguration::CreateParams::Grabpay, id_bank_transfer: ::Stripe::PaymentMethodConfiguration::CreateParams::IdBankTransfer, ideal: ::Stripe::PaymentMethodConfiguration::CreateParams::Ideal, jcb: ::Stripe::PaymentMethodConfiguration::CreateParams::Jcb, klarna: ::Stripe::PaymentMethodConfiguration::CreateParams::Klarna, konbini: ::Stripe::PaymentMethodConfiguration::CreateParams::Konbini, link: ::Stripe::PaymentMethodConfiguration::CreateParams::Link, mobilepay: ::Stripe::PaymentMethodConfiguration::CreateParams::Mobilepay, multibanco: ::Stripe::PaymentMethodConfiguration::CreateParams::Multibanco, name: String, oxxo: ::Stripe::PaymentMethodConfiguration::CreateParams::Oxxo, p24: ::Stripe::PaymentMethodConfiguration::CreateParams::P24, parent: String, paynow: ::Stripe::PaymentMethodConfiguration::CreateParams::Paynow, paypal: ::Stripe::PaymentMethodConfiguration::CreateParams::Paypal, payto: ::Stripe::PaymentMethodConfiguration::CreateParams::Payto, promptpay: ::Stripe::PaymentMethodConfiguration::CreateParams::Promptpay, qris: ::Stripe::PaymentMethodConfiguration::CreateParams::Qris, revolut_pay: ::Stripe::PaymentMethodConfiguration::CreateParams::RevolutPay, sepa_debit: ::Stripe::PaymentMethodConfiguration::CreateParams::SepaDebit, shopeepay: ::Stripe::PaymentMethodConfiguration::CreateParams::Shopeepay, sofort: ::Stripe::PaymentMethodConfiguration::CreateParams::Sofort, swish: ::Stripe::PaymentMethodConfiguration::CreateParams::Swish, twint: ::Stripe::PaymentMethodConfiguration::CreateParams::Twint, us_bank_account: ::Stripe::PaymentMethodConfiguration::CreateParams::UsBankAccount, wechat_pay: ::Stripe::PaymentMethodConfiguration::CreateParams::WechatPay, zip: ::Stripe::PaymentMethodConfiguration::CreateParams::Zip).void
|
2103
|
+
params(acss_debit: ::Stripe::PaymentMethodConfiguration::CreateParams::AcssDebit, affirm: ::Stripe::PaymentMethodConfiguration::CreateParams::Affirm, afterpay_clearpay: ::Stripe::PaymentMethodConfiguration::CreateParams::AfterpayClearpay, alipay: ::Stripe::PaymentMethodConfiguration::CreateParams::Alipay, alma: ::Stripe::PaymentMethodConfiguration::CreateParams::Alma, amazon_pay: ::Stripe::PaymentMethodConfiguration::CreateParams::AmazonPay, apple_pay: ::Stripe::PaymentMethodConfiguration::CreateParams::ApplePay, apple_pay_later: ::Stripe::PaymentMethodConfiguration::CreateParams::ApplePayLater, au_becs_debit: ::Stripe::PaymentMethodConfiguration::CreateParams::AuBecsDebit, bacs_debit: ::Stripe::PaymentMethodConfiguration::CreateParams::BacsDebit, bancontact: ::Stripe::PaymentMethodConfiguration::CreateParams::Bancontact, blik: ::Stripe::PaymentMethodConfiguration::CreateParams::Blik, boleto: ::Stripe::PaymentMethodConfiguration::CreateParams::Boleto, card: ::Stripe::PaymentMethodConfiguration::CreateParams::Card, cartes_bancaires: ::Stripe::PaymentMethodConfiguration::CreateParams::CartesBancaires, cashapp: ::Stripe::PaymentMethodConfiguration::CreateParams::Cashapp, customer_balance: ::Stripe::PaymentMethodConfiguration::CreateParams::CustomerBalance, eps: ::Stripe::PaymentMethodConfiguration::CreateParams::Eps, expand: T::Array[String], fpx: ::Stripe::PaymentMethodConfiguration::CreateParams::Fpx, giropay: ::Stripe::PaymentMethodConfiguration::CreateParams::Giropay, google_pay: ::Stripe::PaymentMethodConfiguration::CreateParams::GooglePay, gopay: ::Stripe::PaymentMethodConfiguration::CreateParams::Gopay, grabpay: ::Stripe::PaymentMethodConfiguration::CreateParams::Grabpay, id_bank_transfer: ::Stripe::PaymentMethodConfiguration::CreateParams::IdBankTransfer, ideal: ::Stripe::PaymentMethodConfiguration::CreateParams::Ideal, jcb: ::Stripe::PaymentMethodConfiguration::CreateParams::Jcb, klarna: ::Stripe::PaymentMethodConfiguration::CreateParams::Klarna, konbini: ::Stripe::PaymentMethodConfiguration::CreateParams::Konbini, link: ::Stripe::PaymentMethodConfiguration::CreateParams::Link, mobilepay: ::Stripe::PaymentMethodConfiguration::CreateParams::Mobilepay, multibanco: ::Stripe::PaymentMethodConfiguration::CreateParams::Multibanco, name: String, oxxo: ::Stripe::PaymentMethodConfiguration::CreateParams::Oxxo, p24: ::Stripe::PaymentMethodConfiguration::CreateParams::P24, parent: String, pay_by_bank: ::Stripe::PaymentMethodConfiguration::CreateParams::PayByBank, paynow: ::Stripe::PaymentMethodConfiguration::CreateParams::Paynow, paypal: ::Stripe::PaymentMethodConfiguration::CreateParams::Paypal, payto: ::Stripe::PaymentMethodConfiguration::CreateParams::Payto, promptpay: ::Stripe::PaymentMethodConfiguration::CreateParams::Promptpay, qris: ::Stripe::PaymentMethodConfiguration::CreateParams::Qris, revolut_pay: ::Stripe::PaymentMethodConfiguration::CreateParams::RevolutPay, sepa_debit: ::Stripe::PaymentMethodConfiguration::CreateParams::SepaDebit, shopeepay: ::Stripe::PaymentMethodConfiguration::CreateParams::Shopeepay, sofort: ::Stripe::PaymentMethodConfiguration::CreateParams::Sofort, swish: ::Stripe::PaymentMethodConfiguration::CreateParams::Swish, twint: ::Stripe::PaymentMethodConfiguration::CreateParams::Twint, us_bank_account: ::Stripe::PaymentMethodConfiguration::CreateParams::UsBankAccount, wechat_pay: ::Stripe::PaymentMethodConfiguration::CreateParams::WechatPay, zip: ::Stripe::PaymentMethodConfiguration::CreateParams::Zip).void
|
2061
2104
|
}
|
2062
2105
|
def initialize(
|
2063
2106
|
acss_debit: nil,
|
@@ -2096,6 +2139,7 @@ module Stripe
|
|
2096
2139
|
oxxo: nil,
|
2097
2140
|
p24: nil,
|
2098
2141
|
parent: nil,
|
2142
|
+
pay_by_bank: nil,
|
2099
2143
|
paynow: nil,
|
2100
2144
|
paypal: nil,
|
2101
2145
|
payto: nil,
|
@@ -2696,6 +2740,24 @@ module Stripe
|
|
2696
2740
|
}
|
2697
2741
|
def initialize(display_preference: nil); end
|
2698
2742
|
end
|
2743
|
+
class PayByBank < Stripe::RequestParams
|
2744
|
+
class DisplayPreference < Stripe::RequestParams
|
2745
|
+
# The account's preference for whether or not to display this payment method.
|
2746
|
+
sig { returns(String) }
|
2747
|
+
attr_accessor :preference
|
2748
|
+
sig { params(preference: String).void }
|
2749
|
+
def initialize(preference: nil); end
|
2750
|
+
end
|
2751
|
+
# Whether or not the payment method should be displayed.
|
2752
|
+
sig {
|
2753
|
+
returns(::Stripe::PaymentMethodConfiguration::UpdateParams::PayByBank::DisplayPreference)
|
2754
|
+
}
|
2755
|
+
attr_accessor :display_preference
|
2756
|
+
sig {
|
2757
|
+
params(display_preference: ::Stripe::PaymentMethodConfiguration::UpdateParams::PayByBank::DisplayPreference).void
|
2758
|
+
}
|
2759
|
+
def initialize(display_preference: nil); end
|
2760
|
+
end
|
2699
2761
|
class Paynow < Stripe::RequestParams
|
2700
2762
|
class DisplayPreference < Stripe::RequestParams
|
2701
2763
|
# The account's preference for whether or not to display this payment method.
|
@@ -3052,6 +3114,9 @@ module Stripe
|
|
3052
3114
|
# Przelewy24 is a Poland-based payment method aggregator that allows customers to complete transactions online using bank transfers and other methods. Bank transfers account for 30% of online payments in Poland and Przelewy24 provides a way for customers to pay with over 165 banks. Check this [page](https://stripe.com/docs/payments/p24) for more details.
|
3053
3115
|
sig { returns(::Stripe::PaymentMethodConfiguration::UpdateParams::P24) }
|
3054
3116
|
attr_accessor :p24
|
3117
|
+
# Pay by bank is a redirect payment method backed by bank transfers. A customer is redirected to their bank to authorize a bank transfer for a given amount. This removes a lot of the error risks inherent in waiting for the customer to initiate a transfer themselves, and is less expensive than card payments.
|
3118
|
+
sig { returns(::Stripe::PaymentMethodConfiguration::UpdateParams::PayByBank) }
|
3119
|
+
attr_accessor :pay_by_bank
|
3055
3120
|
# PayNow is a Singapore-based payment method that allows customers to make a payment using their preferred app from participating banks and participating non-bank financial institutions. Check this [page](https://stripe.com/docs/payments/paynow) for more details.
|
3056
3121
|
sig { returns(::Stripe::PaymentMethodConfiguration::UpdateParams::Paynow) }
|
3057
3122
|
attr_accessor :paynow
|
@@ -3095,7 +3160,7 @@ module Stripe
|
|
3095
3160
|
sig { returns(::Stripe::PaymentMethodConfiguration::UpdateParams::Zip) }
|
3096
3161
|
attr_accessor :zip
|
3097
3162
|
sig {
|
3098
|
-
params(acss_debit: ::Stripe::PaymentMethodConfiguration::UpdateParams::AcssDebit, active: T::Boolean, affirm: ::Stripe::PaymentMethodConfiguration::UpdateParams::Affirm, afterpay_clearpay: ::Stripe::PaymentMethodConfiguration::UpdateParams::AfterpayClearpay, alipay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Alipay, alma: ::Stripe::PaymentMethodConfiguration::UpdateParams::Alma, amazon_pay: ::Stripe::PaymentMethodConfiguration::UpdateParams::AmazonPay, apple_pay: ::Stripe::PaymentMethodConfiguration::UpdateParams::ApplePay, apple_pay_later: ::Stripe::PaymentMethodConfiguration::UpdateParams::ApplePayLater, au_becs_debit: ::Stripe::PaymentMethodConfiguration::UpdateParams::AuBecsDebit, bacs_debit: ::Stripe::PaymentMethodConfiguration::UpdateParams::BacsDebit, bancontact: ::Stripe::PaymentMethodConfiguration::UpdateParams::Bancontact, blik: ::Stripe::PaymentMethodConfiguration::UpdateParams::Blik, boleto: ::Stripe::PaymentMethodConfiguration::UpdateParams::Boleto, card: ::Stripe::PaymentMethodConfiguration::UpdateParams::Card, cartes_bancaires: ::Stripe::PaymentMethodConfiguration::UpdateParams::CartesBancaires, cashapp: ::Stripe::PaymentMethodConfiguration::UpdateParams::Cashapp, customer_balance: ::Stripe::PaymentMethodConfiguration::UpdateParams::CustomerBalance, eps: ::Stripe::PaymentMethodConfiguration::UpdateParams::Eps, expand: T::Array[String], fpx: ::Stripe::PaymentMethodConfiguration::UpdateParams::Fpx, giropay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Giropay, google_pay: ::Stripe::PaymentMethodConfiguration::UpdateParams::GooglePay, gopay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Gopay, grabpay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Grabpay, id_bank_transfer: ::Stripe::PaymentMethodConfiguration::UpdateParams::IdBankTransfer, ideal: ::Stripe::PaymentMethodConfiguration::UpdateParams::Ideal, jcb: ::Stripe::PaymentMethodConfiguration::UpdateParams::Jcb, klarna: ::Stripe::PaymentMethodConfiguration::UpdateParams::Klarna, konbini: ::Stripe::PaymentMethodConfiguration::UpdateParams::Konbini, link: ::Stripe::PaymentMethodConfiguration::UpdateParams::Link, mobilepay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Mobilepay, multibanco: ::Stripe::PaymentMethodConfiguration::UpdateParams::Multibanco, name: String, oxxo: ::Stripe::PaymentMethodConfiguration::UpdateParams::Oxxo, p24: ::Stripe::PaymentMethodConfiguration::UpdateParams::P24, paynow: ::Stripe::PaymentMethodConfiguration::UpdateParams::Paynow, paypal: ::Stripe::PaymentMethodConfiguration::UpdateParams::Paypal, payto: ::Stripe::PaymentMethodConfiguration::UpdateParams::Payto, promptpay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Promptpay, qris: ::Stripe::PaymentMethodConfiguration::UpdateParams::Qris, revolut_pay: ::Stripe::PaymentMethodConfiguration::UpdateParams::RevolutPay, sepa_debit: ::Stripe::PaymentMethodConfiguration::UpdateParams::SepaDebit, shopeepay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Shopeepay, sofort: ::Stripe::PaymentMethodConfiguration::UpdateParams::Sofort, swish: ::Stripe::PaymentMethodConfiguration::UpdateParams::Swish, twint: ::Stripe::PaymentMethodConfiguration::UpdateParams::Twint, us_bank_account: ::Stripe::PaymentMethodConfiguration::UpdateParams::UsBankAccount, wechat_pay: ::Stripe::PaymentMethodConfiguration::UpdateParams::WechatPay, zip: ::Stripe::PaymentMethodConfiguration::UpdateParams::Zip).void
|
3163
|
+
params(acss_debit: ::Stripe::PaymentMethodConfiguration::UpdateParams::AcssDebit, active: T::Boolean, affirm: ::Stripe::PaymentMethodConfiguration::UpdateParams::Affirm, afterpay_clearpay: ::Stripe::PaymentMethodConfiguration::UpdateParams::AfterpayClearpay, alipay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Alipay, alma: ::Stripe::PaymentMethodConfiguration::UpdateParams::Alma, amazon_pay: ::Stripe::PaymentMethodConfiguration::UpdateParams::AmazonPay, apple_pay: ::Stripe::PaymentMethodConfiguration::UpdateParams::ApplePay, apple_pay_later: ::Stripe::PaymentMethodConfiguration::UpdateParams::ApplePayLater, au_becs_debit: ::Stripe::PaymentMethodConfiguration::UpdateParams::AuBecsDebit, bacs_debit: ::Stripe::PaymentMethodConfiguration::UpdateParams::BacsDebit, bancontact: ::Stripe::PaymentMethodConfiguration::UpdateParams::Bancontact, blik: ::Stripe::PaymentMethodConfiguration::UpdateParams::Blik, boleto: ::Stripe::PaymentMethodConfiguration::UpdateParams::Boleto, card: ::Stripe::PaymentMethodConfiguration::UpdateParams::Card, cartes_bancaires: ::Stripe::PaymentMethodConfiguration::UpdateParams::CartesBancaires, cashapp: ::Stripe::PaymentMethodConfiguration::UpdateParams::Cashapp, customer_balance: ::Stripe::PaymentMethodConfiguration::UpdateParams::CustomerBalance, eps: ::Stripe::PaymentMethodConfiguration::UpdateParams::Eps, expand: T::Array[String], fpx: ::Stripe::PaymentMethodConfiguration::UpdateParams::Fpx, giropay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Giropay, google_pay: ::Stripe::PaymentMethodConfiguration::UpdateParams::GooglePay, gopay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Gopay, grabpay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Grabpay, id_bank_transfer: ::Stripe::PaymentMethodConfiguration::UpdateParams::IdBankTransfer, ideal: ::Stripe::PaymentMethodConfiguration::UpdateParams::Ideal, jcb: ::Stripe::PaymentMethodConfiguration::UpdateParams::Jcb, klarna: ::Stripe::PaymentMethodConfiguration::UpdateParams::Klarna, konbini: ::Stripe::PaymentMethodConfiguration::UpdateParams::Konbini, link: ::Stripe::PaymentMethodConfiguration::UpdateParams::Link, mobilepay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Mobilepay, multibanco: ::Stripe::PaymentMethodConfiguration::UpdateParams::Multibanco, name: String, oxxo: ::Stripe::PaymentMethodConfiguration::UpdateParams::Oxxo, p24: ::Stripe::PaymentMethodConfiguration::UpdateParams::P24, pay_by_bank: ::Stripe::PaymentMethodConfiguration::UpdateParams::PayByBank, paynow: ::Stripe::PaymentMethodConfiguration::UpdateParams::Paynow, paypal: ::Stripe::PaymentMethodConfiguration::UpdateParams::Paypal, payto: ::Stripe::PaymentMethodConfiguration::UpdateParams::Payto, promptpay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Promptpay, qris: ::Stripe::PaymentMethodConfiguration::UpdateParams::Qris, revolut_pay: ::Stripe::PaymentMethodConfiguration::UpdateParams::RevolutPay, sepa_debit: ::Stripe::PaymentMethodConfiguration::UpdateParams::SepaDebit, shopeepay: ::Stripe::PaymentMethodConfiguration::UpdateParams::Shopeepay, sofort: ::Stripe::PaymentMethodConfiguration::UpdateParams::Sofort, swish: ::Stripe::PaymentMethodConfiguration::UpdateParams::Swish, twint: ::Stripe::PaymentMethodConfiguration::UpdateParams::Twint, us_bank_account: ::Stripe::PaymentMethodConfiguration::UpdateParams::UsBankAccount, wechat_pay: ::Stripe::PaymentMethodConfiguration::UpdateParams::WechatPay, zip: ::Stripe::PaymentMethodConfiguration::UpdateParams::Zip).void
|
3099
3164
|
}
|
3100
3165
|
def initialize(
|
3101
3166
|
acss_debit: nil,
|
@@ -3134,6 +3199,7 @@ module Stripe
|
|
3134
3199
|
name: nil,
|
3135
3200
|
oxxo: nil,
|
3136
3201
|
p24: nil,
|
3202
|
+
pay_by_bank: nil,
|
3137
3203
|
paynow: nil,
|
3138
3204
|
paypal: nil,
|
3139
3205
|
payto: nil,
|
@@ -822,6 +822,9 @@ module Stripe
|
|
822
822
|
attr_accessor :bank
|
823
823
|
sig { params(bank: String).void }
|
824
824
|
def initialize(bank: nil); end
|
825
|
+
end
|
826
|
+
class PayByBank < Stripe::RequestParams
|
827
|
+
|
825
828
|
end
|
826
829
|
class Payco < Stripe::RequestParams
|
827
830
|
|
@@ -1050,6 +1053,9 @@ module Stripe
|
|
1050
1053
|
# If this is a `p24` PaymentMethod, this hash contains details about the P24 payment method.
|
1051
1054
|
sig { returns(::Stripe::SetupIntent::CreateParams::PaymentMethodData::P24) }
|
1052
1055
|
attr_accessor :p24
|
1056
|
+
# If this is a `pay_by_bank` PaymentMethod, this hash contains details about the PayByBank payment method.
|
1057
|
+
sig { returns(::Stripe::SetupIntent::CreateParams::PaymentMethodData::PayByBank) }
|
1058
|
+
attr_accessor :pay_by_bank
|
1053
1059
|
# If this is a `payco` PaymentMethod, this hash contains details about the PAYCO payment method.
|
1054
1060
|
sig { returns(::Stripe::SetupIntent::CreateParams::PaymentMethodData::Payco) }
|
1055
1061
|
attr_accessor :payco
|
@@ -1111,7 +1117,7 @@ module Stripe
|
|
1111
1117
|
sig { returns(::Stripe::SetupIntent::CreateParams::PaymentMethodData::Zip) }
|
1112
1118
|
attr_accessor :zip
|
1113
1119
|
sig {
|
1114
|
-
params(acss_debit: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::AcssDebit, affirm: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Affirm, afterpay_clearpay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::AfterpayClearpay, alipay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Alipay, allow_redisplay: String, alma: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Alma, amazon_pay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::AmazonPay, au_becs_debit: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::AuBecsDebit, bacs_debit: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::BacsDebit, bancontact: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Bancontact, billing_details: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::BillingDetails, blik: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Blik, boleto: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Boleto, cashapp: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Cashapp, customer_balance: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::CustomerBalance, eps: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Eps, fpx: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Fpx, giropay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Giropay, gopay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Gopay, grabpay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Grabpay, id_bank_transfer: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::IdBankTransfer, ideal: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Ideal, interac_present: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::InteracPresent, kakao_pay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::KakaoPay, klarna: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Klarna, konbini: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Konbini, kr_card: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::KrCard, link: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Link, mb_way: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::MbWay, metadata: T::Hash[String, String], mobilepay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Mobilepay, multibanco: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Multibanco, naver_pay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::NaverPay, oxxo: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Oxxo, p24: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::P24, payco: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Payco, paynow: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Paynow, paypal: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Paypal, payto: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Payto, pix: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Pix, promptpay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Promptpay, qris: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Qris, radar_options: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::RadarOptions, rechnung: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Rechnung, revolut_pay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::RevolutPay, samsung_pay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::SamsungPay, sepa_debit: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::SepaDebit, shopeepay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Shopeepay, sofort: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Sofort, swish: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Swish, twint: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Twint, type: String, us_bank_account: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::UsBankAccount, wechat_pay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::WechatPay, zip: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Zip).void
|
1120
|
+
params(acss_debit: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::AcssDebit, affirm: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Affirm, afterpay_clearpay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::AfterpayClearpay, alipay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Alipay, allow_redisplay: String, alma: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Alma, amazon_pay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::AmazonPay, au_becs_debit: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::AuBecsDebit, bacs_debit: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::BacsDebit, bancontact: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Bancontact, billing_details: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::BillingDetails, blik: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Blik, boleto: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Boleto, cashapp: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Cashapp, customer_balance: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::CustomerBalance, eps: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Eps, fpx: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Fpx, giropay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Giropay, gopay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Gopay, grabpay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Grabpay, id_bank_transfer: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::IdBankTransfer, ideal: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Ideal, interac_present: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::InteracPresent, kakao_pay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::KakaoPay, klarna: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Klarna, konbini: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Konbini, kr_card: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::KrCard, link: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Link, mb_way: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::MbWay, metadata: T::Hash[String, String], mobilepay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Mobilepay, multibanco: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Multibanco, naver_pay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::NaverPay, oxxo: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Oxxo, p24: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::P24, pay_by_bank: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::PayByBank, payco: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Payco, paynow: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Paynow, paypal: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Paypal, payto: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Payto, pix: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Pix, promptpay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Promptpay, qris: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Qris, radar_options: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::RadarOptions, rechnung: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Rechnung, revolut_pay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::RevolutPay, samsung_pay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::SamsungPay, sepa_debit: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::SepaDebit, shopeepay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Shopeepay, sofort: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Sofort, swish: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Swish, twint: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Twint, type: String, us_bank_account: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::UsBankAccount, wechat_pay: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::WechatPay, zip: ::Stripe::SetupIntent::CreateParams::PaymentMethodData::Zip).void
|
1115
1121
|
}
|
1116
1122
|
def initialize(
|
1117
1123
|
acss_debit: nil,
|
@@ -1149,6 +1155,7 @@ module Stripe
|
|
1149
1155
|
naver_pay: nil,
|
1150
1156
|
oxxo: nil,
|
1151
1157
|
p24: nil,
|
1158
|
+
pay_by_bank: nil,
|
1152
1159
|
payco: nil,
|
1153
1160
|
paynow: nil,
|
1154
1161
|
paypal: nil,
|
@@ -1960,6 +1967,9 @@ module Stripe
|
|
1960
1967
|
attr_accessor :bank
|
1961
1968
|
sig { params(bank: String).void }
|
1962
1969
|
def initialize(bank: nil); end
|
1970
|
+
end
|
1971
|
+
class PayByBank < Stripe::RequestParams
|
1972
|
+
|
1963
1973
|
end
|
1964
1974
|
class Payco < Stripe::RequestParams
|
1965
1975
|
|
@@ -2188,6 +2198,9 @@ module Stripe
|
|
2188
2198
|
# If this is a `p24` PaymentMethod, this hash contains details about the P24 payment method.
|
2189
2199
|
sig { returns(::Stripe::SetupIntent::UpdateParams::PaymentMethodData::P24) }
|
2190
2200
|
attr_accessor :p24
|
2201
|
+
# If this is a `pay_by_bank` PaymentMethod, this hash contains details about the PayByBank payment method.
|
2202
|
+
sig { returns(::Stripe::SetupIntent::UpdateParams::PaymentMethodData::PayByBank) }
|
2203
|
+
attr_accessor :pay_by_bank
|
2191
2204
|
# If this is a `payco` PaymentMethod, this hash contains details about the PAYCO payment method.
|
2192
2205
|
sig { returns(::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Payco) }
|
2193
2206
|
attr_accessor :payco
|
@@ -2249,7 +2262,7 @@ module Stripe
|
|
2249
2262
|
sig { returns(::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Zip) }
|
2250
2263
|
attr_accessor :zip
|
2251
2264
|
sig {
|
2252
|
-
params(acss_debit: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::AcssDebit, affirm: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Affirm, afterpay_clearpay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::AfterpayClearpay, alipay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Alipay, allow_redisplay: String, alma: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Alma, amazon_pay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::AmazonPay, au_becs_debit: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::AuBecsDebit, bacs_debit: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::BacsDebit, bancontact: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Bancontact, billing_details: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::BillingDetails, blik: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Blik, boleto: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Boleto, cashapp: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Cashapp, customer_balance: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::CustomerBalance, eps: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Eps, fpx: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Fpx, giropay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Giropay, gopay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Gopay, grabpay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Grabpay, id_bank_transfer: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::IdBankTransfer, ideal: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Ideal, interac_present: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::InteracPresent, kakao_pay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::KakaoPay, klarna: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Klarna, konbini: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Konbini, kr_card: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::KrCard, link: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Link, mb_way: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::MbWay, metadata: T::Hash[String, String], mobilepay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Mobilepay, multibanco: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Multibanco, naver_pay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::NaverPay, oxxo: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Oxxo, p24: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::P24, payco: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Payco, paynow: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Paynow, paypal: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Paypal, payto: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Payto, pix: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Pix, promptpay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Promptpay, qris: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Qris, radar_options: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::RadarOptions, rechnung: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Rechnung, revolut_pay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::RevolutPay, samsung_pay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::SamsungPay, sepa_debit: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::SepaDebit, shopeepay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Shopeepay, sofort: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Sofort, swish: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Swish, twint: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Twint, type: String, us_bank_account: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::UsBankAccount, wechat_pay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::WechatPay, zip: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Zip).void
|
2265
|
+
params(acss_debit: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::AcssDebit, affirm: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Affirm, afterpay_clearpay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::AfterpayClearpay, alipay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Alipay, allow_redisplay: String, alma: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Alma, amazon_pay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::AmazonPay, au_becs_debit: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::AuBecsDebit, bacs_debit: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::BacsDebit, bancontact: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Bancontact, billing_details: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::BillingDetails, blik: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Blik, boleto: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Boleto, cashapp: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Cashapp, customer_balance: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::CustomerBalance, eps: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Eps, fpx: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Fpx, giropay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Giropay, gopay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Gopay, grabpay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Grabpay, id_bank_transfer: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::IdBankTransfer, ideal: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Ideal, interac_present: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::InteracPresent, kakao_pay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::KakaoPay, klarna: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Klarna, konbini: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Konbini, kr_card: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::KrCard, link: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Link, mb_way: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::MbWay, metadata: T::Hash[String, String], mobilepay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Mobilepay, multibanco: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Multibanco, naver_pay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::NaverPay, oxxo: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Oxxo, p24: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::P24, pay_by_bank: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::PayByBank, payco: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Payco, paynow: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Paynow, paypal: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Paypal, payto: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Payto, pix: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Pix, promptpay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Promptpay, qris: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Qris, radar_options: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::RadarOptions, rechnung: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Rechnung, revolut_pay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::RevolutPay, samsung_pay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::SamsungPay, sepa_debit: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::SepaDebit, shopeepay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Shopeepay, sofort: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Sofort, swish: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Swish, twint: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Twint, type: String, us_bank_account: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::UsBankAccount, wechat_pay: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::WechatPay, zip: ::Stripe::SetupIntent::UpdateParams::PaymentMethodData::Zip).void
|
2253
2266
|
}
|
2254
2267
|
def initialize(
|
2255
2268
|
acss_debit: nil,
|
@@ -2287,6 +2300,7 @@ module Stripe
|
|
2287
2300
|
naver_pay: nil,
|
2288
2301
|
oxxo: nil,
|
2289
2302
|
p24: nil,
|
2303
|
+
pay_by_bank: nil,
|
2290
2304
|
payco: nil,
|
2291
2305
|
paynow: nil,
|
2292
2306
|
paypal: nil,
|
@@ -3094,6 +3108,9 @@ module Stripe
|
|
3094
3108
|
attr_accessor :bank
|
3095
3109
|
sig { params(bank: String).void }
|
3096
3110
|
def initialize(bank: nil); end
|
3111
|
+
end
|
3112
|
+
class PayByBank < Stripe::RequestParams
|
3113
|
+
|
3097
3114
|
end
|
3098
3115
|
class Payco < Stripe::RequestParams
|
3099
3116
|
|
@@ -3322,6 +3339,9 @@ module Stripe
|
|
3322
3339
|
# If this is a `p24` PaymentMethod, this hash contains details about the P24 payment method.
|
3323
3340
|
sig { returns(::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::P24) }
|
3324
3341
|
attr_accessor :p24
|
3342
|
+
# If this is a `pay_by_bank` PaymentMethod, this hash contains details about the PayByBank payment method.
|
3343
|
+
sig { returns(::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::PayByBank) }
|
3344
|
+
attr_accessor :pay_by_bank
|
3325
3345
|
# If this is a `payco` PaymentMethod, this hash contains details about the PAYCO payment method.
|
3326
3346
|
sig { returns(::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Payco) }
|
3327
3347
|
attr_accessor :payco
|
@@ -3383,7 +3403,7 @@ module Stripe
|
|
3383
3403
|
sig { returns(::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Zip) }
|
3384
3404
|
attr_accessor :zip
|
3385
3405
|
sig {
|
3386
|
-
params(acss_debit: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::AcssDebit, affirm: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Affirm, afterpay_clearpay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::AfterpayClearpay, alipay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Alipay, allow_redisplay: String, alma: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Alma, amazon_pay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::AmazonPay, au_becs_debit: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::AuBecsDebit, bacs_debit: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::BacsDebit, bancontact: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Bancontact, billing_details: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::BillingDetails, blik: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Blik, boleto: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Boleto, cashapp: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Cashapp, customer_balance: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::CustomerBalance, eps: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Eps, fpx: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Fpx, giropay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Giropay, gopay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Gopay, grabpay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Grabpay, id_bank_transfer: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::IdBankTransfer, ideal: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Ideal, interac_present: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::InteracPresent, kakao_pay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::KakaoPay, klarna: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Klarna, konbini: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Konbini, kr_card: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::KrCard, link: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Link, mb_way: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::MbWay, metadata: T::Hash[String, String], mobilepay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Mobilepay, multibanco: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Multibanco, naver_pay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::NaverPay, oxxo: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Oxxo, p24: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::P24, payco: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Payco, paynow: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Paynow, paypal: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Paypal, payto: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Payto, pix: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Pix, promptpay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Promptpay, qris: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Qris, radar_options: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::RadarOptions, rechnung: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Rechnung, revolut_pay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::RevolutPay, samsung_pay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::SamsungPay, sepa_debit: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::SepaDebit, shopeepay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Shopeepay, sofort: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Sofort, swish: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Swish, twint: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Twint, type: String, us_bank_account: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::UsBankAccount, wechat_pay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::WechatPay, zip: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Zip).void
|
3406
|
+
params(acss_debit: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::AcssDebit, affirm: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Affirm, afterpay_clearpay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::AfterpayClearpay, alipay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Alipay, allow_redisplay: String, alma: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Alma, amazon_pay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::AmazonPay, au_becs_debit: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::AuBecsDebit, bacs_debit: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::BacsDebit, bancontact: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Bancontact, billing_details: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::BillingDetails, blik: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Blik, boleto: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Boleto, cashapp: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Cashapp, customer_balance: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::CustomerBalance, eps: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Eps, fpx: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Fpx, giropay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Giropay, gopay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Gopay, grabpay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Grabpay, id_bank_transfer: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::IdBankTransfer, ideal: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Ideal, interac_present: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::InteracPresent, kakao_pay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::KakaoPay, klarna: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Klarna, konbini: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Konbini, kr_card: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::KrCard, link: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Link, mb_way: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::MbWay, metadata: T::Hash[String, String], mobilepay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Mobilepay, multibanco: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Multibanco, naver_pay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::NaverPay, oxxo: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Oxxo, p24: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::P24, pay_by_bank: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::PayByBank, payco: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Payco, paynow: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Paynow, paypal: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Paypal, payto: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Payto, pix: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Pix, promptpay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Promptpay, qris: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Qris, radar_options: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::RadarOptions, rechnung: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Rechnung, revolut_pay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::RevolutPay, samsung_pay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::SamsungPay, sepa_debit: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::SepaDebit, shopeepay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Shopeepay, sofort: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Sofort, swish: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Swish, twint: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Twint, type: String, us_bank_account: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::UsBankAccount, wechat_pay: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::WechatPay, zip: ::Stripe::SetupIntent::ConfirmParams::PaymentMethodData::Zip).void
|
3387
3407
|
}
|
3388
3408
|
def initialize(
|
3389
3409
|
acss_debit: nil,
|
@@ -3421,6 +3441,7 @@ module Stripe
|
|
3421
3441
|
naver_pay: nil,
|
3422
3442
|
oxxo: nil,
|
3423
3443
|
p24: nil,
|
3444
|
+
pay_by_bank: nil,
|
3424
3445
|
payco: nil,
|
3425
3446
|
paynow: nil,
|
3426
3447
|
paypal: nil,
|
@@ -118,6 +118,17 @@ module Stripe
|
|
118
118
|
sig { returns(Integer) }
|
119
119
|
attr_reader :smart_tip_threshold
|
120
120
|
end
|
121
|
+
class Jpy < Stripe::StripeObject
|
122
|
+
# Fixed amounts displayed when collecting a tip
|
123
|
+
sig { returns(T.nilable(T::Array[Integer])) }
|
124
|
+
attr_reader :fixed_amounts
|
125
|
+
# Percentages displayed when collecting a tip
|
126
|
+
sig { returns(T.nilable(T::Array[Integer])) }
|
127
|
+
attr_reader :percentages
|
128
|
+
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
129
|
+
sig { returns(Integer) }
|
130
|
+
attr_reader :smart_tip_threshold
|
131
|
+
end
|
121
132
|
class Myr < Stripe::StripeObject
|
122
133
|
# Fixed amounts displayed when collecting a tip
|
123
134
|
sig { returns(T.nilable(T::Array[Integer])) }
|
@@ -219,6 +230,9 @@ module Stripe
|
|
219
230
|
# Attribute for field hkd
|
220
231
|
sig { returns(Hkd) }
|
221
232
|
attr_reader :hkd
|
233
|
+
# Attribute for field jpy
|
234
|
+
sig { returns(Jpy) }
|
235
|
+
attr_reader :jpy
|
222
236
|
# Attribute for field myr
|
223
237
|
sig { returns(Myr) }
|
224
238
|
attr_reader :myr
|
@@ -445,6 +459,21 @@ module Stripe
|
|
445
459
|
}
|
446
460
|
def initialize(fixed_amounts: nil, percentages: nil, smart_tip_threshold: nil); end
|
447
461
|
end
|
462
|
+
class Jpy < Stripe::RequestParams
|
463
|
+
# Fixed amounts displayed when collecting a tip
|
464
|
+
sig { returns(T::Array[Integer]) }
|
465
|
+
attr_accessor :fixed_amounts
|
466
|
+
# Percentages displayed when collecting a tip
|
467
|
+
sig { returns(T::Array[Integer]) }
|
468
|
+
attr_accessor :percentages
|
469
|
+
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
470
|
+
sig { returns(Integer) }
|
471
|
+
attr_accessor :smart_tip_threshold
|
472
|
+
sig {
|
473
|
+
params(fixed_amounts: T::Array[Integer], percentages: T::Array[Integer], smart_tip_threshold: Integer).void
|
474
|
+
}
|
475
|
+
def initialize(fixed_amounts: nil, percentages: nil, smart_tip_threshold: nil); end
|
476
|
+
end
|
448
477
|
class Myr < Stripe::RequestParams
|
449
478
|
# Fixed amounts displayed when collecting a tip
|
450
479
|
sig { returns(T::Array[Integer]) }
|
@@ -574,6 +603,9 @@ module Stripe
|
|
574
603
|
# Tipping configuration for HKD
|
575
604
|
sig { returns(::Stripe::Terminal::Configuration::UpdateParams::Tipping::Hkd) }
|
576
605
|
attr_accessor :hkd
|
606
|
+
# Tipping configuration for JPY
|
607
|
+
sig { returns(::Stripe::Terminal::Configuration::UpdateParams::Tipping::Jpy) }
|
608
|
+
attr_accessor :jpy
|
577
609
|
# Tipping configuration for MYR
|
578
610
|
sig { returns(::Stripe::Terminal::Configuration::UpdateParams::Tipping::Myr) }
|
579
611
|
attr_accessor :myr
|
@@ -596,7 +628,7 @@ module Stripe
|
|
596
628
|
sig { returns(::Stripe::Terminal::Configuration::UpdateParams::Tipping::Usd) }
|
597
629
|
attr_accessor :usd
|
598
630
|
sig {
|
599
|
-
params(aud: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Aud, cad: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Cad, chf: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Chf, czk: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Czk, dkk: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Dkk, eur: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Eur, gbp: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Gbp, hkd: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Hkd, myr: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Myr, nok: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Nok, nzd: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Nzd, pln: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Pln, sek: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Sek, sgd: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Sgd, usd: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Usd).void
|
631
|
+
params(aud: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Aud, cad: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Cad, chf: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Chf, czk: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Czk, dkk: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Dkk, eur: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Eur, gbp: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Gbp, hkd: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Hkd, jpy: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Jpy, myr: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Myr, nok: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Nok, nzd: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Nzd, pln: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Pln, sek: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Sek, sgd: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Sgd, usd: ::Stripe::Terminal::Configuration::UpdateParams::Tipping::Usd).void
|
600
632
|
}
|
601
633
|
def initialize(
|
602
634
|
aud: nil,
|
@@ -607,6 +639,7 @@ module Stripe
|
|
607
639
|
eur: nil,
|
608
640
|
gbp: nil,
|
609
641
|
hkd: nil,
|
642
|
+
jpy: nil,
|
610
643
|
myr: nil,
|
611
644
|
nok: nil,
|
612
645
|
nzd: nil,
|
@@ -841,6 +874,21 @@ module Stripe
|
|
841
874
|
}
|
842
875
|
def initialize(fixed_amounts: nil, percentages: nil, smart_tip_threshold: nil); end
|
843
876
|
end
|
877
|
+
class Jpy < Stripe::RequestParams
|
878
|
+
# Fixed amounts displayed when collecting a tip
|
879
|
+
sig { returns(T::Array[Integer]) }
|
880
|
+
attr_accessor :fixed_amounts
|
881
|
+
# Percentages displayed when collecting a tip
|
882
|
+
sig { returns(T::Array[Integer]) }
|
883
|
+
attr_accessor :percentages
|
884
|
+
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
885
|
+
sig { returns(Integer) }
|
886
|
+
attr_accessor :smart_tip_threshold
|
887
|
+
sig {
|
888
|
+
params(fixed_amounts: T::Array[Integer], percentages: T::Array[Integer], smart_tip_threshold: Integer).void
|
889
|
+
}
|
890
|
+
def initialize(fixed_amounts: nil, percentages: nil, smart_tip_threshold: nil); end
|
891
|
+
end
|
844
892
|
class Myr < Stripe::RequestParams
|
845
893
|
# Fixed amounts displayed when collecting a tip
|
846
894
|
sig { returns(T::Array[Integer]) }
|
@@ -970,6 +1018,9 @@ module Stripe
|
|
970
1018
|
# Tipping configuration for HKD
|
971
1019
|
sig { returns(::Stripe::Terminal::Configuration::CreateParams::Tipping::Hkd) }
|
972
1020
|
attr_accessor :hkd
|
1021
|
+
# Tipping configuration for JPY
|
1022
|
+
sig { returns(::Stripe::Terminal::Configuration::CreateParams::Tipping::Jpy) }
|
1023
|
+
attr_accessor :jpy
|
973
1024
|
# Tipping configuration for MYR
|
974
1025
|
sig { returns(::Stripe::Terminal::Configuration::CreateParams::Tipping::Myr) }
|
975
1026
|
attr_accessor :myr
|
@@ -992,7 +1043,7 @@ module Stripe
|
|
992
1043
|
sig { returns(::Stripe::Terminal::Configuration::CreateParams::Tipping::Usd) }
|
993
1044
|
attr_accessor :usd
|
994
1045
|
sig {
|
995
|
-
params(aud: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Aud, cad: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Cad, chf: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Chf, czk: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Czk, dkk: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Dkk, eur: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Eur, gbp: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Gbp, hkd: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Hkd, myr: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Myr, nok: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Nok, nzd: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Nzd, pln: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Pln, sek: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Sek, sgd: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Sgd, usd: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Usd).void
|
1046
|
+
params(aud: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Aud, cad: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Cad, chf: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Chf, czk: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Czk, dkk: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Dkk, eur: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Eur, gbp: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Gbp, hkd: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Hkd, jpy: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Jpy, myr: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Myr, nok: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Nok, nzd: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Nzd, pln: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Pln, sek: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Sek, sgd: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Sgd, usd: ::Stripe::Terminal::Configuration::CreateParams::Tipping::Usd).void
|
996
1047
|
}
|
997
1048
|
def initialize(
|
998
1049
|
aud: nil,
|
@@ -1003,6 +1054,7 @@ module Stripe
|
|
1003
1054
|
eur: nil,
|
1004
1055
|
gbp: nil,
|
1005
1056
|
hkd: nil,
|
1057
|
+
jpy: nil,
|
1006
1058
|
myr: nil,
|
1007
1059
|
nok: nil,
|
1008
1060
|
nzd: nil,
|
@@ -172,6 +172,19 @@ module Stripe
|
|
172
172
|
town: nil
|
173
173
|
); end
|
174
174
|
end
|
175
|
+
class DirectorshipDeclaration < Stripe::RequestParams
|
176
|
+
# The Unix timestamp marking when the directorship declaration attestation was made.
|
177
|
+
sig { returns(Integer) }
|
178
|
+
attr_accessor :date
|
179
|
+
# The IP address from which the directorship declaration attestation was made.
|
180
|
+
sig { returns(String) }
|
181
|
+
attr_accessor :ip
|
182
|
+
# The user agent of the browser from which the directorship declaration attestation was made.
|
183
|
+
sig { returns(String) }
|
184
|
+
attr_accessor :user_agent
|
185
|
+
sig { params(date: Integer, ip: String, user_agent: String).void }
|
186
|
+
def initialize(date: nil, ip: nil, user_agent: nil); end
|
187
|
+
end
|
175
188
|
class OwnershipDeclaration < Stripe::RequestParams
|
176
189
|
# The Unix timestamp marking when the beneficial owner attestation was made.
|
177
190
|
sig { returns(Integer) }
|
@@ -216,6 +229,9 @@ module Stripe
|
|
216
229
|
# Whether the company's directors have been provided. Set this Boolean to `true` after creating all the company's directors with [the Persons API](/api/persons) for accounts with a `relationship.director` requirement. This value is not automatically set to `true` after creating directors, so it needs to be updated to indicate all directors have been provided.
|
217
230
|
sig { returns(T::Boolean) }
|
218
231
|
attr_accessor :directors_provided
|
232
|
+
# This hash is used to attest that the directors information provided to Stripe is both current and correct.
|
233
|
+
sig { returns(::Stripe::Token::CreateParams::Account::Company::DirectorshipDeclaration) }
|
234
|
+
attr_accessor :directorship_declaration
|
219
235
|
# Whether the company's executives have been provided. Set this Boolean to `true` after creating all the company's executives with [the Persons API](/api/persons) for accounts with a `relationship.executive` requirement.
|
220
236
|
sig { returns(T::Boolean) }
|
221
237
|
attr_accessor :executives_provided
|
@@ -268,13 +284,14 @@ module Stripe
|
|
268
284
|
sig { returns(::Stripe::Token::CreateParams::Account::Company::Verification) }
|
269
285
|
attr_accessor :verification
|
270
286
|
sig {
|
271
|
-
params(address: ::Stripe::Token::CreateParams::Account::Company::Address, address_kana: ::Stripe::Token::CreateParams::Account::Company::AddressKana, address_kanji: ::Stripe::Token::CreateParams::Account::Company::AddressKanji, directors_provided: T::Boolean, executives_provided: T::Boolean, export_license_id: String, export_purpose_code: String, name: String, name_kana: String, name_kanji: String, owners_provided: T::Boolean, ownership_declaration: ::Stripe::Token::CreateParams::Account::Company::OwnershipDeclaration, ownership_declaration_shown_and_signed: T::Boolean, ownership_exemption_reason: T.nilable(String), phone: String, registration_number: String, structure: T.nilable(String), tax_id: String, tax_id_registrar: String, vat_id: String, verification: ::Stripe::Token::CreateParams::Account::Company::Verification).void
|
287
|
+
params(address: ::Stripe::Token::CreateParams::Account::Company::Address, address_kana: ::Stripe::Token::CreateParams::Account::Company::AddressKana, address_kanji: ::Stripe::Token::CreateParams::Account::Company::AddressKanji, directors_provided: T::Boolean, directorship_declaration: ::Stripe::Token::CreateParams::Account::Company::DirectorshipDeclaration, executives_provided: T::Boolean, export_license_id: String, export_purpose_code: String, name: String, name_kana: String, name_kanji: String, owners_provided: T::Boolean, ownership_declaration: ::Stripe::Token::CreateParams::Account::Company::OwnershipDeclaration, ownership_declaration_shown_and_signed: T::Boolean, ownership_exemption_reason: T.nilable(String), phone: String, registration_number: String, structure: T.nilable(String), tax_id: String, tax_id_registrar: String, vat_id: String, verification: ::Stripe::Token::CreateParams::Account::Company::Verification).void
|
272
288
|
}
|
273
289
|
def initialize(
|
274
290
|
address: nil,
|
275
291
|
address_kana: nil,
|
276
292
|
address_kanji: nil,
|
277
293
|
directors_provided: nil,
|
294
|
+
directorship_declaration: nil,
|
278
295
|
executives_provided: nil,
|
279
296
|
export_license_id: nil,
|
280
297
|
export_purpose_code: nil,
|