Skip to content

Commit

Permalink
Merge pull request #168 from avadev/24.10.0
Browse files Browse the repository at this point in the history
Update for 24.10.0
  • Loading branch information
svc-developer authored Oct 10, 2024
2 parents ed5c1c6 + 8f8e8c9 commit 1e97a2f
Show file tree
Hide file tree
Showing 12 changed files with 7,187 additions and 6,488 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.8.2"
version := "24.10.0"

scalaVersion := "2.11.12"

Expand Down
13,034 changes: 6,551 additions & 6,483 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 @@ -1892,10 +1892,40 @@ public enum ErrorCodeId {
*/
InvalidCurrencyAggrementType(2817),

/**
* ItemTaxCodeRecommendation Status can't be set without particular state of recommendation
*/
InvalidTaxCodeRecommendationStatusUpdate(2818),

/**
* Filing Request Error Codes
*/
DuplicateFilingRequest(2819),

/**
* Occurs when a Header value is incorrect or invalid in some way
*/
InvalidHTTPHeader(3000);
InvalidHTTPHeader(3000),

/**
*
*/
SCSServiceUnreachable(3001),

/**
*
*/
DuplicateContactCode(3002),

/**
*
*/
SCSServerError(3003),

/**
* Occurs when user reconciliation happens and unable to create user at AvaTax
*/
UserReconciliationError(3004);

private int value;
private static HashMap map = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ public enum ReportSource {
/**
* mongodb
*/
MONGODB(1);
MONGODB(1),

/**
* returns api
*/
RETURNSAPI(2);

private int value;
private static HashMap map = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void setCompanyId(Integer value) {
/**
* Getter for contactCode
*
* A unique code for this contact.
* A unique code for this contact which is unique throughout company.
*/
public String getContactCode() {
return this.contactCode;
Expand All @@ -84,7 +84,7 @@ public String getContactCode() {
/**
* Setter for contactCode
*
* A unique code for this contact.
* A unique code for this contact which is unique throughout company.
*/
public void setContactCode(String value) {
this.contactCode = value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,30 @@ public void setIncludeDocumentLineDetails(Boolean value) {
this.includeDocumentLineDetails = value;
}

private Boolean includeMultiTaxLineDetails;

/**
* Getter for includeMultiTaxLineDetails
*
* If true, include multi tax line details in the generated report.
* If false, include document or document line in the generated report based on includeDocumentLineDetails.
* Defaults to false if not specified.
*/
public Boolean getIncludeMultiTaxLineDetails() {
return this.includeMultiTaxLineDetails;
}

/**
* Setter for includeMultiTaxLineDetails
*
* If true, include multi tax line details in the generated report.
* If false, include document or document line in the generated report based on includeDocumentLineDetails.
* Defaults to false if not specified.
*/
public void setIncludeMultiTaxLineDetails(Boolean value) {
this.includeMultiTaxLineDetails = value;
}

/**
* Returns a JSON string representation of ExportDocumentLineModel
*/
Expand Down
Loading

0 comments on commit 1e97a2f

Please sign in to comment.