Skip to content

Commit

Permalink
Merge pull request #131 from avadev/22.6.1
Browse files Browse the repository at this point in the history
Update for 22.6.1
  • Loading branch information
svc-developer authored Jul 5, 2022
2 parents 67b72cc + 38c47d9 commit f31d400
Show file tree
Hide file tree
Showing 6 changed files with 1,499 additions and 1,237 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 := "22.5.0"
version := "22.6.1"

scalaVersion := "2.11.12"

Expand Down
2,472 changes: 1,236 additions & 1,236 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
@@ -0,0 +1,101 @@
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
*/

/**
* Specifies a duration for which to grant TSA accounts write access.
* See AVT-25316
*/
public class AccountTsaAccessDurationModel {


private Integer minutes;

/**
* Getter for minutes
*
* Number of minutes
*/
public Integer getMinutes() {
return this.minutes;
}

/**
* Setter for minutes
*
* Number of minutes
*/
public void setMinutes(Integer value) {
this.minutes = value;
}

private Integer hours;

/**
* Getter for hours
*
* Number of hours
*/
public Integer getHours() {
return this.hours;
}

/**
* Setter for hours
*
* Number of hours
*/
public void setHours(Integer value) {
this.hours = value;
}

private Integer days;

/**
* Getter for days
*
* Number of days
*/
public Integer getDays() {
return this.days;
}

/**
* Setter for days
*
* Number of days
*/
public void setDays(Integer value) {
this.days = value;
}

/**
* Returns a JSON string representation of AccountTsaAccessDurationModel
*/
@Override
public String toString() {
return JsonSerializer.SerializeObject(this);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
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
*/

/**
* Descibes a record of an account granting TSA accounts write access.
* See AVT-25316
*/
public class AccountTsaAccessModel {


private Integer accountId;

/**
* Getter for accountId
*
* The id of the account to which the TSA access entry belongs to.
*/
public Integer getAccountId() {
return this.accountId;
}

/**
* Setter for accountId
*
* The id of the account to which the TSA access entry belongs to.
*/
public void setAccountId(Integer value) {
this.accountId = value;
}

private Integer modifiedUserId;

/**
* Getter for modifiedUserId
*
* The user ID of the user who last modified this record.
*/
public Integer getModifiedUserId() {
return this.modifiedUserId;
}

/**
* Setter for modifiedUserId
*
* The user ID of the user who last modified this record.
*/
public void setModifiedUserId(Integer value) {
this.modifiedUserId = value;
}

private Date modifiedDate;

/**
* Getter for modifiedDate
*
* The date/time when this record was last modified.
*/
public Date getModifiedDate() {
return this.modifiedDate;
}

/**
* Setter for modifiedDate
*
* The date/time when this record was last modified.
*/
public void setModifiedDate(Date value) {
this.modifiedDate = value;
}

private Date endDate;

/**
* Getter for endDate
*
* The date/time when this TSA access record expires.
*/
public Date getEndDate() {
return this.endDate;
}

/**
* Setter for endDate
*
* The date/time when this TSA access record expires.
*/
public void setEndDate(Date value) {
this.endDate = value;
}

/**
* Returns a JSON string representation of AccountTsaAccessModel
*/
@Override
public String toString() {
return JsonSerializer.SerializeObject(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,26 @@ public void setFilingCalendarId(Long value) {
this.filingCalendarId = value;
}

private String registrationId;

/**
* Getter for registrationId
*
* The registration ID from the return's filing calendar.
*/
public String getRegistrationId() {
return this.registrationId;
}

/**
* Setter for registrationId
*
* The registration ID from the return's filing calendar.
*/
public void setRegistrationId(String value) {
this.registrationId = value;
}

private Long resourceFileId;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,26 @@ public void setFilingCalendarId(Long value) {
this.filingCalendarId = value;
}

private String registrationId;

/**
* Getter for registrationId
*
* The registration ID from the return's filing calendar.
*/
public String getRegistrationId() {
return this.registrationId;
}

/**
* Setter for registrationId
*
* The registration ID from the return's filing calendar.
*/
public void setRegistrationId(String value) {
this.registrationId = value;
}

private FilingStatusId status;

/**
Expand Down

0 comments on commit f31d400

Please sign in to comment.