Skip to content

Commit

Permalink
Merge pull request #167 from avadev/24.8.2
Browse files Browse the repository at this point in the history
Update for 24.8.2
  • Loading branch information
svc-developer authored Aug 30, 2024
2 parents f638c55 + f00d1f8 commit ed5c1c6
Show file tree
Hide file tree
Showing 36 changed files with 2,895 additions and 941 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.6.4"
version := "24.8.2"

scalaVersion := "2.11.12"

Expand Down
1,948 changes: 1,162 additions & 786 deletions src/main/java/net/avalara/avatax/rest/client/AvaTaxClient.java

Large diffs are not rendered by default.

80 changes: 70 additions & 10 deletions src/main/java/net/avalara/avatax/rest/client/enums/APStatus.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ public enum APStatus {
/**
*
*/
ShortPayItemsAccrueMatch(1),
AccruedShortPayItemsMatch(1),

/**
*
*/
MarkForReviewMatch(2),
NeedReviewMatch(2),

/**
*
*/
RejectMatch(3),
NoAccrualRejectMatch(3),

/**
*
Expand All @@ -55,7 +55,7 @@ public enum APStatus {
/**
*
*/
ShortPayItemsAccrueUndercharge(6),
AccruedShortPayItemsUndercharge(6),

/**
*
Expand All @@ -65,7 +65,7 @@ public enum APStatus {
/**
*
*/
RejectUndercharge(8),
NoAccrualRejectUndercharge(8),

/**
*
Expand All @@ -75,22 +75,22 @@ public enum APStatus {
/**
*
*/
ShortPayAvalaraCalculated(10),
NoAccrualShortPayAvalaraCalculated(10),

/**
*
*/
ShortPayItemsAccrueOvercharge(11),
AccruedShortPayItemsOvercharge(11),

/**
*
*/
MarkForReviewOvercharge(12),
NeedReviewOvercharge(12),

/**
*
*/
RejectOvercharge(13),
NoAccrualRejectOvercharge(13),

/**
*
Expand Down Expand Up @@ -140,7 +140,67 @@ public enum APStatus {
/**
*
*/
PendingAccrualUndercharge(23);
PendingAccrualUndercharge(23),

/**
*
*/
PendingShortPayItemsUndercharge(24),

/**
*
*/
PendingShortPayItemsMatch(25),

/**
*
*/
PendingShortPayItemsOvercharge(26),

/**
*
*/
ShortPayItemsAccrueMatch(-1),

/**
*
*/
MarkForReviewMatch(-1),

/**
*
*/
RejectMatch(-1),

/**
*
*/
ShortPayItemsAccrueUndercharge(-1),

/**
*
*/
RejectUndercharge(-1),

/**
*
*/
ShortPayAvalaraCalculated(-1),

/**
*
*/
ShortPayItemsAccrueOvercharge(-1),

/**
*
*/
MarkForReviewOvercharge(-1),

/**
*
*/
RejectOvercharge(-1);

private int value;
private static HashMap map = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1882,6 +1882,16 @@ public enum ErrorCodeId {
*/
InvalidTaxCodeIdInRecommendationStatusUpdate(2815),

/**
* ECM communication certificates error
*/
CommunicationCertificatesError(2816),

/**
* Invalid currency and aggrement type combination
*/
InvalidCurrencyAggrementType(2817),

/**
* Occurs when a Header value is incorrect or invalid in some way
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*/

/**
* Certificate with exemption reason and exposure zone. Exposed in url $includes
* Certificate with exemption reason and exposure zone. This is exposed in the URL's `$includes`.
*/
public class ActiveCertificateModel {

Expand All @@ -35,7 +35,7 @@ public class ActiveCertificateModel {
/**
* Getter for id
*
* Certificate ID.
* The unique ID number of this certificate.
*/
public Long getId() {
return this.id;
Expand All @@ -44,7 +44,7 @@ public Long getId() {
/**
* Setter for id
*
* Certificate ID.
* The unique ID number of this certificate.
*/
public void setId(Long value) {
this.id = value;
Expand All @@ -55,7 +55,7 @@ public void setId(Long value) {
/**
* Getter for created
*
* Created date time
* The date/time when this certificate was created.
*/
public Date getCreated() {
return this.created;
Expand All @@ -64,7 +64,7 @@ public Date getCreated() {
/**
* Setter for created
*
* Created date time
* The date/time when this certificate was created.
*/
public void setCreated(Date value) {
this.created = value;
Expand All @@ -75,7 +75,7 @@ public void setCreated(Date value) {
/**
* Getter for modified
*
* Modified date time
* The date/time when this certificate was last modified.
*/
public Date getModified() {
return this.modified;
Expand All @@ -84,7 +84,7 @@ public Date getModified() {
/**
* Setter for modified
*
* Modified date time
* The date/time when this certificate was last modified.
*/
public void setModified(Date value) {
this.modified = value;
Expand All @@ -95,7 +95,7 @@ public void setModified(Date value) {
/**
* Getter for expectedTaxNumber
*
* Certificate's expected tax number
* The expected tax number for this certificate.
*/
public String getExpectedTaxNumber() {
return this.expectedTaxNumber;
Expand All @@ -104,7 +104,7 @@ public String getExpectedTaxNumber() {
/**
* Setter for expectedTaxNumber
*
* Certificate's expected tax number
* The expected tax number for this certificate.
*/
public void setExpectedTaxNumber(String value) {
this.expectedTaxNumber = value;
Expand All @@ -115,7 +115,7 @@ public void setExpectedTaxNumber(String value) {
/**
* Getter for actualTaxNumber
*
* Certificate's actual tax number
* The actual tax number for this certificate.
*/
public String getActualTaxNumber() {
return this.actualTaxNumber;
Expand All @@ -124,7 +124,7 @@ public String getActualTaxNumber() {
/**
* Setter for actualTaxNumber
*
* Certificate's actual tax number
* The actual tax number for this certificate.
*/
public void setActualTaxNumber(String value) {
this.actualTaxNumber = value;
Expand Down
36 changes: 18 additions & 18 deletions src/main/java/net/avalara/avatax/rest/client/models/BatchModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,44 +70,44 @@ public void setBatchAgent(String value) {
this.batchAgent = value;
}

private String options;
private Integer id;

/**
* Getter for options
* Getter for id
*
* Any optional flags provided for this batch
* The unique ID number of this batch.
*/
public String getOptions() {
return this.options;
public Integer getId() {
return this.id;
}

/**
* Setter for options
* Setter for id
*
* Any optional flags provided for this batch
* The unique ID number of this batch.
*/
public void setOptions(String value) {
this.options = value;
public void setId(Integer value) {
this.id = value;
}

private Integer id;
private String options;

/**
* Getter for id
* Getter for options
*
* The unique ID number of this batch.
* Any optional flags provided for this batch
*/
public Integer getId() {
return this.id;
public String getOptions() {
return this.options;
}

/**
* Setter for id
* Setter for options
*
* The unique ID number of this batch.
* Any optional flags provided for this batch
*/
public void setId(Integer value) {
this.id = value;
public void setOptions(String value) {
this.options = value;
}

private String name;
Expand Down
Loading

0 comments on commit ed5c1c6

Please sign in to comment.