-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from avadev/22.11.0
Update for 22.11.0
- Loading branch information
Showing
16 changed files
with
2,813 additions
and
738 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,738 changes: 1,004 additions & 734 deletions
1,738
src/main/java/net/avalara/avatax/rest/client/AvaTaxClient.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
src/main/java/net/avalara/avatax/rest/client/models/HsCode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
package net.avalara.avatax.rest.client.models; | ||
|
||
import net.avalara.avatax.rest.client.enums.*; | ||
import net.avalara.avatax.rest.client.serializer.JsonSerializer; | ||
|
||
import java.lang.Override; | ||
import java.math.BigDecimal; | ||
import java.util.ArrayList; | ||
import java.util.Date; | ||
import java.util.HashMap; | ||
|
||
/* | ||
* AvaTax Software Development Kit for Java JRE based environments | ||
* | ||
* (c) 2004-2018 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Dustin Welden <[email protected]> | ||
* @copyright 2004-2018 Avalara, Inc. | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 | ||
* @link https://github.com/avadev/AvaTax-REST-V2-JRE-SDK | ||
* Swagger name: AvaTaxClient | ||
*/ | ||
|
||
/** | ||
* | ||
*/ | ||
public class HsCode { | ||
|
||
|
||
private String original; | ||
|
||
/** | ||
* Getter for original | ||
* | ||
* | ||
*/ | ||
public String getOriginal() { | ||
return this.original; | ||
} | ||
|
||
/** | ||
* Setter for original | ||
* | ||
* | ||
*/ | ||
public void setOriginal(String value) { | ||
this.original = value; | ||
} | ||
|
||
private String modified; | ||
|
||
/** | ||
* Getter for modified | ||
* | ||
* | ||
*/ | ||
public String getModified() { | ||
return this.modified; | ||
} | ||
|
||
/** | ||
* Setter for modified | ||
* | ||
* | ||
*/ | ||
public void setModified(String value) { | ||
this.modified = value; | ||
} | ||
|
||
/** | ||
* Returns a JSON string representation of HsCode | ||
*/ | ||
@Override | ||
public String toString() { | ||
return JsonSerializer.SerializeObject(this); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 changes: 100 additions & 0 deletions
100
src/main/java/net/avalara/avatax/rest/client/models/ItemTagDetailInputModel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
package net.avalara.avatax.rest.client.models; | ||
|
||
import net.avalara.avatax.rest.client.enums.*; | ||
import net.avalara.avatax.rest.client.serializer.JsonSerializer; | ||
|
||
import java.lang.Override; | ||
import java.math.BigDecimal; | ||
import java.util.ArrayList; | ||
import java.util.Date; | ||
import java.util.HashMap; | ||
|
||
/* | ||
* AvaTax Software Development Kit for Java JRE based environments | ||
* | ||
* (c) 2004-2018 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Dustin Welden <[email protected]> | ||
* @copyright 2004-2018 Avalara, Inc. | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 | ||
* @link https://github.com/avadev/AvaTax-REST-V2-JRE-SDK | ||
* Swagger name: AvaTaxClient | ||
*/ | ||
|
||
/** | ||
* | ||
*/ | ||
public class ItemTagDetailInputModel { | ||
|
||
|
||
private String tagName; | ||
|
||
/** | ||
* Getter for tagName | ||
* | ||
* The tag name. | ||
*/ | ||
public String getTagName() { | ||
return this.tagName; | ||
} | ||
|
||
/** | ||
* Setter for tagName | ||
* | ||
* The tag name. | ||
*/ | ||
public void setTagName(String value) { | ||
this.tagName = value; | ||
} | ||
|
||
private Long itemId; | ||
|
||
/** | ||
* Getter for itemId | ||
* | ||
* The unique ID number of this item. | ||
*/ | ||
public Long getItemId() { | ||
return this.itemId; | ||
} | ||
|
||
/** | ||
* Setter for itemId | ||
* | ||
* The unique ID number of this item. | ||
*/ | ||
public void setItemId(Long value) { | ||
this.itemId = value; | ||
} | ||
|
||
private Integer companyId; | ||
|
||
/** | ||
* Getter for companyId | ||
* | ||
* The unique ID number of the company that owns this item. | ||
*/ | ||
public Integer getCompanyId() { | ||
return this.companyId; | ||
} | ||
|
||
/** | ||
* Setter for companyId | ||
* | ||
* The unique ID number of the company that owns this item. | ||
*/ | ||
public void setCompanyId(Integer value) { | ||
this.companyId = value; | ||
} | ||
|
||
/** | ||
* Returns a JSON string representation of ItemTagDetailInputModel | ||
*/ | ||
@Override | ||
public String toString() { | ||
return JsonSerializer.SerializeObject(this); | ||
} | ||
} |
160 changes: 160 additions & 0 deletions
160
src/main/java/net/avalara/avatax/rest/client/models/ItemTagDetailOutputModel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
package net.avalara.avatax.rest.client.models; | ||
|
||
import net.avalara.avatax.rest.client.enums.*; | ||
import net.avalara.avatax.rest.client.serializer.JsonSerializer; | ||
|
||
import java.lang.Override; | ||
import java.math.BigDecimal; | ||
import java.util.ArrayList; | ||
import java.util.Date; | ||
import java.util.HashMap; | ||
|
||
/* | ||
* AvaTax Software Development Kit for Java JRE based environments | ||
* | ||
* (c) 2004-2018 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Dustin Welden <[email protected]> | ||
* @copyright 2004-2018 Avalara, Inc. | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 | ||
* @link https://github.com/avadev/AvaTax-REST-V2-JRE-SDK | ||
* Swagger name: AvaTaxClient | ||
*/ | ||
|
||
/** | ||
* Represents a tag for an item in your company's product catalog. | ||
*/ | ||
public class ItemTagDetailOutputModel { | ||
|
||
|
||
private String tagName; | ||
|
||
/** | ||
* Getter for tagName | ||
* | ||
* The tag name. | ||
*/ | ||
public String getTagName() { | ||
return this.tagName; | ||
} | ||
|
||
/** | ||
* Setter for tagName | ||
* | ||
* The tag name. | ||
*/ | ||
public void setTagName(String value) { | ||
this.tagName = value; | ||
} | ||
|
||
private Long itemId; | ||
|
||
/** | ||
* Getter for itemId | ||
* | ||
* The unique ID number of this item. | ||
*/ | ||
public Long getItemId() { | ||
return this.itemId; | ||
} | ||
|
||
/** | ||
* Setter for itemId | ||
* | ||
* The unique ID number of this item. | ||
*/ | ||
public void setItemId(Long value) { | ||
this.itemId = value; | ||
} | ||
|
||
private Integer companyId; | ||
|
||
/** | ||
* Getter for companyId | ||
* | ||
* The unique ID number of the company that owns this item. | ||
*/ | ||
public Integer getCompanyId() { | ||
return this.companyId; | ||
} | ||
|
||
/** | ||
* Setter for companyId | ||
* | ||
* The unique ID number of the company that owns this item. | ||
*/ | ||
public void setCompanyId(Integer value) { | ||
this.companyId = value; | ||
} | ||
|
||
private Integer itemTagDetailId; | ||
|
||
/** | ||
* Getter for itemTagDetailId | ||
* | ||
* The unique ID number of the item-tag relation. | ||
*/ | ||
public Integer getItemTagDetailId() { | ||
return this.itemTagDetailId; | ||
} | ||
|
||
/** | ||
* Setter for itemTagDetailId | ||
* | ||
* The unique ID number of the item-tag relation. | ||
*/ | ||
public void setItemTagDetailId(Integer value) { | ||
this.itemTagDetailId = value; | ||
} | ||
|
||
private Integer tagId; | ||
|
||
/** | ||
* Getter for tagId | ||
* | ||
* The unique tag Id for the tags. | ||
*/ | ||
public Integer getTagId() { | ||
return this.tagId; | ||
} | ||
|
||
/** | ||
* Setter for tagId | ||
* | ||
* The unique tag Id for the tags. | ||
*/ | ||
public void setTagId(Integer value) { | ||
this.tagId = value; | ||
} | ||
|
||
private Date createdDate; | ||
|
||
/** | ||
* Getter for createdDate | ||
* | ||
* The date when this record was created. | ||
*/ | ||
public Date getCreatedDate() { | ||
return this.createdDate; | ||
} | ||
|
||
/** | ||
* Setter for createdDate | ||
* | ||
* The date when this record was created. | ||
*/ | ||
public void setCreatedDate(Date value) { | ||
this.createdDate = value; | ||
} | ||
|
||
/** | ||
* Returns a JSON string representation of ItemTagDetailOutputModel | ||
*/ | ||
@Override | ||
public String toString() { | ||
return JsonSerializer.SerializeObject(this); | ||
} | ||
} |
Oops, something went wrong.