-
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 #131 from avadev/22.6.1
Update for 22.6.1
- Loading branch information
Showing
6 changed files
with
1,499 additions
and
1,237 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
2,472 changes: 1,236 additions & 1,236 deletions
2,472
src/main/java/net/avalara/avatax/rest/client/AvaTaxClient.java
Large diffs are not rendered by default.
Oops, something went wrong.
101 changes: 101 additions & 0 deletions
101
src/main/java/net/avalara/avatax/rest/client/models/AccountTsaAccessDurationModel.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,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); | ||
} | ||
} |
121 changes: 121 additions & 0 deletions
121
src/main/java/net/avalara/avatax/rest/client/models/AccountTsaAccessModel.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,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); | ||
} | ||
} |
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
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