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