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: stripe/_account_session.py
+99Lines changed: 99 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -267,6 +267,70 @@ class Features(StripeObject):
267
267
features: Features
268
268
_inner_class_types= {"features": Features}
269
269
270
+
classFinancialAccounts(StripeObject):
271
+
classFeatures(StripeObject):
272
+
bill_management: bool
273
+
"""
274
+
Whether to allow bill management features.
275
+
"""
276
+
card_management: bool
277
+
"""
278
+
Whether to allow card management features.
279
+
"""
280
+
disable_stripe_user_authentication: bool
281
+
"""
282
+
Whether Stripe user authentication is disabled. This value can only be `true` for accounts where `controller.requirement_collection` is `application` for the account. This is `false` by default.
283
+
"""
284
+
edit_payout_schedule: bool
285
+
"""
286
+
Whether to allow payout schedule to be changed. Defaults to `true` when `controller.losses.payments` is set to `stripe` for the account, otherwise `false`.
287
+
"""
288
+
send_money: bool
289
+
"""
290
+
Whether to enable the send money feature that grants access to the v2 CreateOutboundPayment API.
291
+
"""
292
+
293
+
enabled: bool
294
+
"""
295
+
Whether the embedded component is enabled.
296
+
"""
297
+
features: Features
298
+
_inner_class_types= {"features": Features}
299
+
300
+
classFinancialAccountsTransactions(StripeObject):
301
+
classFeatures(StripeObject):
302
+
capture_payments: bool
303
+
"""
304
+
Whether to allow capturing and cancelling payment intents. This is `true` by default.
305
+
"""
306
+
card_management: bool
307
+
"""
308
+
Whether to allow card management features.
309
+
"""
310
+
card_spend_dispute_management: bool
311
+
"""
312
+
Whether to allow card spend dispute management features.
313
+
"""
314
+
destination_on_behalf_of_charge_management: bool
315
+
"""
316
+
Whether connected accounts can manage destination charges that are created on behalf of them. This is `false` by default.
317
+
"""
318
+
dispute_management: bool
319
+
"""
320
+
Whether responding to disputes is enabled, including submitting evidence and accepting disputes. This is `true` by default.
321
+
"""
322
+
refund_management: bool
323
+
"""
324
+
Whether sending refunds is enabled. This is `true` by default.
325
+
"""
326
+
327
+
enabled: bool
328
+
"""
329
+
Whether the embedded component is enabled.
330
+
"""
331
+
features: Features
332
+
_inner_class_types= {"features": Features}
333
+
270
334
classInstantPayoutsPromotion(StripeObject):
271
335
classFeatures(StripeObject):
272
336
disable_stripe_user_authentication: bool
@@ -522,6 +586,24 @@ class Features(StripeObject):
522
586
features: Features
523
587
_inner_class_types= {"features": Features}
524
588
589
+
classRecipientsList(StripeObject):
590
+
classFeatures(StripeObject):
591
+
disable_stripe_user_authentication: bool
592
+
"""
593
+
Whether Stripe user authentication is disabled. This value can only be `true` for accounts where `controller.requirement_collection` is `application` for the account. This is `false` by default.
594
+
"""
595
+
send_money: bool
596
+
"""
597
+
Whether to allow sending money.
598
+
"""
599
+
600
+
enabled: bool
601
+
"""
602
+
Whether the embedded component is enabled.
603
+
"""
604
+
features: Features
605
+
_inner_class_types= {"features": Features}
606
+
525
607
classTaxRegistrations(StripeObject):
526
608
classFeatures(StripeObject):
527
609
pass
@@ -593,6 +675,16 @@ class Features(StripeObject):
593
675
Configuration for the [financial account rewards](https://docs.stripe.com/connect/supported-embedded-components/financial-account-rewards/) embedded component.
Configuration for the [financial accounts](https://docs.stripe.com/connect/supported-embedded-components/financial-accounts/) embedded component.
681
+
"""
682
+
financial_accounts_transactions: Optional[
683
+
FinancialAccountsTransactions
684
+
]
685
+
"""
686
+
Configuration for the [financial accounts transactions](https://docs.stripe.com/connect/supported-embedded-components/financial-accounts-transactions/) embedded component.
0 commit comments