Skip to content

Commit

Permalink
Bug Fix: Assign taxFormStatus Field Instead of taxForm in Java SDK (#50)
Browse files Browse the repository at this point in the history
Fix: Assign taxFormStatus Field Instead of taxForm in Java SDK

This fixes an issue where the incorrect field was being referenced in the Java SDK.
  • Loading branch information
ugurtrolley authored Mar 4, 2025
1 parent 7425cd7 commit 2db8383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/trolley/types/Recipient.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public String getTaxFormStatus() {
}

public void setTaxFormStatus(final String taxFormStatus) {
this.taxFormStatus = this.taxForm;
this.taxFormStatus = this.taxFormStatus;
}

public List<String> getTags() {
Expand Down

0 comments on commit 2db8383

Please sign in to comment.