Skip to content

Commit

Permalink
Support payoutsEnabled on the Account resource for recent api versions
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-stripe committed Apr 23, 2017
1 parent a389f6d commit 9882459
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/main/java/com/stripe/model/Account.java
Expand Up @@ -39,6 +39,7 @@ public class Account extends APIResource implements HasId, MetadataStore<Account
AccountTosAcceptance tosAcceptance;
AccountTransferSchedule transferSchedule;
Boolean transfersEnabled;
Boolean payoutsEnabled;
Verification verification;

@Deprecated
Expand Down Expand Up @@ -143,6 +144,14 @@ public Map<String, String> getMetadata()
return metadata;
}

public Boolean getPayoutsEnabled() {
return payoutsEnabled;
}

public Boolean setPayoutsEnabled(Boolean payoutsEnabled) {
this.payoutsEnabled = payoutsEnabled;
}

public String getProductDescription(){
return productDescription;
}
Expand Down

0 comments on commit 9882459

Please sign in to comment.