Skip to content

Commit

Permalink
Merge pull request #172 from avadev/24.12.0
Browse files Browse the repository at this point in the history
Update for 24.12.0
  • Loading branch information
svc-developer authored Dec 18, 2024
2 parents ad8843a + 8b60ba5 commit 351f39f
Show file tree
Hide file tree
Showing 6 changed files with 868 additions and 785 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := """avatax-rest-v2-api-java"""

organization := "net.avalara.avatax"

version := "24.11.2"
version := "24.12.0"

scalaVersion := "2.11.12"

Expand Down
1,576 changes: 792 additions & 784 deletions src/main/java/net/avalara/avatax/rest/client/AvaTaxClient.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1551,6 +1551,11 @@ public enum ErrorCodeId {
*/
InvalidProductCodeFormat(1744),

/**
*
*/
InvalidCountryAssignment(1745),

/**
* SendSales API errors
*/
Expand Down Expand Up @@ -1957,6 +1962,16 @@ public enum ErrorCodeId {
*/
DuplicateSystemAndCountryForItem(3008),

/**
*
*/
InvalidHsCodeClassificationStatusOverride(3009),

/**
* Occurs when the field name provided in the request isn't valid.
*/
InvalidField(3010),

/**
* Avalara Gateway errors:
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,26 @@ public void setFormCode(String value) {
this.formCode = value;
}

private String taxFormCode;

/**
* Getter for taxFormCode
*
* The unique code of the form, prefixed by the country code.
*/
public String getTaxFormCode() {
return this.taxFormCode;
}

/**
* Setter for taxFormCode
*
* The unique code of the form, prefixed by the country code.
*/
public void setTaxFormCode(String value) {
this.taxFormCode = value;
}

private String description;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,26 @@ public void setFormCode(String value) {
this.formCode = value;
}

private String taxFormCode;

/**
* Getter for taxFormCode
*
* The unique code of the form, prefixed by the country code.
*/
public String getTaxFormCode() {
return this.taxFormCode;
}

/**
* Setter for taxFormCode
*
* The unique code of the form, prefixed by the country code.
*/
public void setTaxFormCode(String value) {
this.taxFormCode = value;
}

private String description;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,26 @@ public void setFormCode(String value) {
this.formCode = value;
}

private String taxFormCode;

/**
* Getter for taxFormCode
*
* The unique code of the form, prefixed by the country code.
*/
public String getTaxFormCode() {
return this.taxFormCode;
}

/**
* Setter for taxFormCode
*
* The unique code of the form, prefixed by the country code.
*/
public void setTaxFormCode(String value) {
this.taxFormCode = value;
}

private String description;

/**
Expand Down

0 comments on commit 351f39f

Please sign in to comment.