Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for 24.12.0 #172

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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