Skip to content

Commit

Permalink
Merge pull request #157 from matthewarkin/patch-1
Browse files Browse the repository at this point in the history
Add status to Stripe Charge object
  • Loading branch information
kyleconroy committed Mar 30, 2015
2 parents 7ae1a86 + 57f3161 commit c658b66
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main/java/com/stripe/model/Charge.java
Expand Up @@ -16,6 +16,7 @@ public class Charge extends APIResource implements MetadataStore<Charge> {
Long created;
String currency;
String id;
String status;
Boolean livemode;
Boolean paid;
Boolean refunded;
Expand Down Expand Up @@ -59,7 +60,11 @@ public String getId() {
public void setId(String id) {
this.id = id;
}


public String getStatus() {
return status;
}

public Integer getAmount() {
return amount;
}
Expand Down

0 comments on commit c658b66

Please sign in to comment.