Skip to content

Commit dfff4cc

Browse files
authored
Develop (#12)
* Pull request (#11) * Added attributes for fields vat_number and tax_exempt * Added attributes for fields product_family_id and product_family_name * Incremented version * Removed Comment * Updated version in README.
1 parent 0486d17 commit dfff4cc

File tree

4 files changed

+256
-223
lines changed

4 files changed

+256
-223
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Stable releases will be published to the central maven repository.
1212
<dependency>
1313
<groupId>io.prowave</groupId>
1414
<artifactId>chargify-webhook-java</artifactId>
15-
<version>1.1.1</version>
15+
<version>1.1.4</version>
1616
</dependency>
1717

1818
### Snapshots

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<packaging>jar</packaging>
99

1010
<name>Chargify Webhook Parser</name>
11-
<version>1.1.3</version>
11+
<version>1.1.4</version>
1212
<description>Parses the payload from a Chargify Webhook.</description>
1313
<url>https://github.com/prowave/chargify-webhook-java</url>
1414

src/main/java/io/prowave/chargify/webhook/bean/Customer.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@ public class Customer {
6464
@JsonProperty("portal_invite_last_sent_at")
6565
private Date portalInviteLastSentAt;
6666

67+
@JsonProperty("vat_number")
68+
private String vatNumber;
69+
70+
@JsonProperty("tax_exempt")
71+
private Boolean taxExempt;
72+
6773
public Long getId() {
6874
return id;
6975
}
@@ -224,4 +230,20 @@ public void setPortalInviteLastSentAt(Date portalInviteLastSentAt) {
224230
this.portalInviteLastSentAt = portalInviteLastSentAt;
225231
}
226232

233+
public String getVatNumber() {
234+
return vatNumber;
235+
}
236+
237+
public void setVatNumber(String vatNumber) {
238+
this.vatNumber = vatNumber;
239+
}
240+
241+
public Boolean getTaxExempt() {
242+
return taxExempt;
243+
}
244+
245+
public void setTaxExempt(Boolean taxExempt) {
246+
this.taxExempt = taxExempt;
247+
}
248+
227249
}

0 commit comments

Comments
 (0)