Skip to content

Commit 6a95ef7

Browse files
committed
Add various missing properties or parameters
* Add support for `supported_transfer_countries` on CountrySpec * Add support for `support_address` on Account
1 parent 4cfc5e9 commit 6a95ef7

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/main/java/com/stripe/model/Account.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public class Account extends ApiResource implements HasId, MetadataStore<Account
4141
Boolean payoutsEnabled;
4242
String productDescription;
4343
String statementDescriptor;
44+
Address supportAddress;
4445
String supportEmail;
4546
String supportPhone;
4647
String supportUrl;

src/main/java/com/stripe/model/CountrySpec.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public class CountrySpec extends ApiResource implements HasId {
2121
Map<String, List<String>> supportedBankAccountCurrencies;
2222
List<String> supportedPaymentCurrencies;
2323
List<String> supportedPaymentMethods;
24+
List<String> supportedTransferCountries;
2425
VerificationFields verificationFields;
2526

2627
// <editor-fold desc="list">

0 commit comments

Comments
 (0)