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.8.0 #166

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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.6.4"
version := "24.8.0"

scalaVersion := "2.11.12"

Expand Down
1,746 changes: 982 additions & 764 deletions src/main/java/net/avalara/avatax/rest/client/AvaTaxClient.java

Large diffs are not rendered by default.

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
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,26 @@ public void setTransactions(ArrayList<TransactionBatchItemModel> value) {
this.transactions = value;
}

private String options;

/**
* Getter for options
*
* Any optional flags provided for this batch
*/
public String getOptions() {
return this.options;
}

/**
* Setter for options
*
* Any optional flags provided for this batch
*/
public void setOptions(String value) {
this.options = value;
}

/**
* Returns a JSON string representation of CreateTransactionBatchRequestModel
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,26 @@ public void setId(Integer value) {
this.id = value;
}

private String options;

/**
* Getter for options
*
* Any optional flags provided for this batch
*/
public String getOptions() {
return this.options;
}

/**
* Setter for options
*
* Any optional flags provided for this batch
*/
public void setOptions(String value) {
this.options = value;
}

private String name;

/**
Expand Down
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
*/

/**
* Credit Transaction Detail Lines
*/
public class CreditTransactionDetailLines {


private Date reportingDate;

/**
* Getter for reportingDate
*
* ReportingDate
*/
public Date getReportingDate() {
return this.reportingDate;
}

/**
* Setter for reportingDate
*
* ReportingDate
*/
public void setReportingDate(Date value) {
this.reportingDate = value;
}

private String lineNo;

/**
* Getter for lineNo
*
* LineNo
*/
public String getLineNo() {
return this.lineNo;
}

/**
* Setter for lineNo
*
* LineNo
*/
public void setLineNo(String value) {
this.lineNo = value;
}

private BigDecimal lineAmount;

/**
* Getter for lineAmount
*
* LineAmount
*/
public BigDecimal getLineAmount() {
return this.lineAmount;
}

/**
* Setter for lineAmount
*
* LineAmount
*/
public void setLineAmount(BigDecimal value) {
this.lineAmount = value;
}

private BigDecimal exemptAmount;

/**
* Getter for exemptAmount
*
* ExemptAmount
*/
public BigDecimal getExemptAmount() {
return this.exemptAmount;
}

/**
* Setter for exemptAmount
*
* ExemptAmount
*/
public void setExemptAmount(BigDecimal value) {
this.exemptAmount = value;
}

private BigDecimal taxableAmount;

/**
* Getter for taxableAmount
*
* TaxableAmount
*/
public BigDecimal getTaxableAmount() {
return this.taxableAmount;
}

/**
* Setter for taxableAmount
*
* TaxableAmount
*/
public void setTaxableAmount(BigDecimal value) {
this.taxableAmount = value;
}

private BigDecimal taxAmount;

/**
* Getter for taxAmount
*
* TaxAmount
*/
public BigDecimal getTaxAmount() {
return this.taxAmount;
}

/**
* Setter for taxAmount
*
* TaxAmount
*/
public void setTaxAmount(BigDecimal value) {
this.taxAmount = value;
}

/**
* Returns a JSON string representation of CreditTransactionDetailLines
*/
@Override
public String toString() {
return JsonSerializer.SerializeObject(this);
}
}
Loading