File tree 2 files changed +23
-1
lines changed
src/Stripe.net/Entities/Accounts
2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ namespace Stripe
8
8
public class AccountSettings : StripeEntity < AccountSettings >
9
9
{
10
10
/// <summary>
11
- /// Settings specific to card charging on the account.
11
+ /// Settings specific to BACS debit charging on the account.
12
12
/// </summary>
13
13
[ JsonProperty ( "bacs_debit_payments" ) ]
14
14
public AccountSettingsBacsDebitPayments BacsDebitPayments { get ; set ; }
@@ -43,5 +43,11 @@ public class AccountSettings : StripeEntity<AccountSettings>
43
43
/// </summary>
44
44
[ JsonProperty ( "payouts" ) ]
45
45
public AccountSettingsPayouts Payouts { get ; set ; }
46
+
47
+ /// <summary>
48
+ /// Settings specific to SEPA Debit charging on the account.
49
+ /// </summary>
50
+ [ JsonProperty ( "sepa_debit_payments" ) ]
51
+ public AccountSettingsSepaDebitPayments SepaDebitPayments { get ; set ; }
46
52
}
47
53
}
Original file line number Diff line number Diff line change
1
+ namespace Stripe
2
+ {
3
+ using System ;
4
+ using System . Collections . Generic ;
5
+ using Newtonsoft . Json ;
6
+ using Stripe . Infrastructure ;
7
+
8
+ public class AccountSettingsSepaDebitPayments : StripeEntity < AccountSettingsSepaDebitPayments >
9
+ {
10
+ /// <summary>
11
+ /// SEPA creditor identifier that identifies the company making the payment.
12
+ /// </summary>
13
+ [ JsonProperty ( "creditor_id" ) ]
14
+ public string CreditorId { get ; set ; }
15
+ }
16
+ }
You can’t perform that action at this time.
0 commit comments