@@ -27,28 +27,38 @@ public class Account extends ApiResource implements HasId, MetadataStore<Account
27
27
Boolean debitNegativeBalances ;
28
28
DeclineChargeOn declineChargeOn ;
29
29
String defaultCurrency ;
30
+ Boolean deleted ;
30
31
Boolean detailsSubmitted ;
31
32
String displayName ;
32
- LoginLinkCollection loginLinks ;
33
33
String email ;
34
34
ExternalAccountCollection externalAccounts ;
35
35
Keys keys ;
36
36
LegalEntity legalEntity ;
37
+ LoginLinkCollection loginLinks ;
37
38
@ Getter (onMethod = @ __ ({@ Override })) Map <String , String > metadata ;
38
- Boolean payoutsEnabled ;
39
39
PayoutSchedule payoutSchedule ;
40
+ String payoutStatementDescriptor ;
41
+ Boolean payoutsEnabled ;
40
42
String productDescription ;
41
43
String statementDescriptor ;
42
44
String supportEmail ;
43
45
String supportPhone ;
44
46
String supportUrl ;
45
47
String timezone ;
46
48
TosAcceptance tosAcceptance ;
47
- TransferSchedule transferSchedule ;
48
49
Boolean transfersEnabled ;
49
50
String type ;
50
51
Verification verification ;
51
- Boolean deleted ;
52
+
53
+ /**
54
+ * The {@code currencies_supported} attribute.
55
+ *
56
+ * @deprecated Prefer using the {@link CountrySpec#getSupportedPaymentCurrencies()} method
57
+ * instead.
58
+ * @see <a href="https://stripe.com/docs/upgrades#2016-03-07">API version 2016-03-07</a>
59
+ */
60
+ @ Deprecated
61
+ List <String > currenciesSupported ;
52
62
53
63
/**
54
64
* The {@code managed} attribute.
@@ -60,14 +70,13 @@ public class Account extends ApiResource implements HasId, MetadataStore<Account
60
70
Boolean managed ;
61
71
62
72
/**
63
- * The {@code currencies_supported } attribute.
73
+ * The {@code transfer_schedule } attribute.
64
74
*
65
- * @deprecated Prefer using the {@link CountrySpec#getSupportedPaymentCurrencies()} method
66
- * instead.
67
- * @see <a href="https://stripe.com/docs/upgrades#2016-03-07">API version 2016-03-07</a>
75
+ * @deprecated Prefer using the {@link #payoutSchedule} attribute instead.
76
+ * @see <a href="https://stripe.com/docs/upgrades#2017-04-06">API version 2017-04-06</a>
68
77
*/
69
78
@ Deprecated
70
- List < String > currenciesSupported ;
79
+ TransferSchedule transferSchedule ;
71
80
72
81
// <editor-fold desc="create">
73
82
/**
0 commit comments