-
Notifications
You must be signed in to change notification settings - Fork 38
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 #240 from avadev/24.4.2
Update for 24.4.2
- Loading branch information
Showing
32 changed files
with
1,136 additions
and
421 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
using System; | ||
|
||
/* | ||
* AvaTax API Client Library | ||
* | ||
* (c) 2004-2023 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Jonathan Wenger <[email protected]> | ||
* @author Sachin Baijal <[email protected]> | ||
* Swagger name: AvaTaxClient | ||
*/ | ||
|
||
namespace Avalara.AvaTax.RestClient | ||
{ | ||
/// <summary> | ||
/// /// The user can set some tolerance or threshold limits inorder to take appropriate actions when | ||
/// their transactions are above or below certain threshold limits. | ||
/// Account Payable (AP) status code indicates an action that needs to be taken when the tolerance/threshold falls between certain range. | ||
/// </summary> | ||
public enum APStatus | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
PayAsBilledMatch = 0, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
ShortPayItemsAccrueMatch = 1, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
MarkForReviewMatch = 2, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
RejectMatch = 3, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
PayAsBilledNoAccrual = 4, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
PayAsBilledAccrueUndercharge = 5, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
ShortPayItemsAccrueUndercharge = 6, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
MarkForReviewUndercharge = 7, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
RejectUndercharge = 8, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
PayAsBilledOvercharge = 9, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
ShortPayAvalaraCalculated = 10, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
ShortPayItemsAccrueOvercharge = 11, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
MarkForReviewOvercharge = 12, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
RejectOvercharge = 13, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
AmountThresholdNotMet = 14, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
CostCenterExempted = 15, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
ItemExempted = 16, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
TrustedVendor = 17, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
AccruedByVendor = 18, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
Ignored = 19, | ||
|
||
} | ||
} |
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,34 @@ | ||
using System; | ||
|
||
/* | ||
* AvaTax API Client Library | ||
* | ||
* (c) 2004-2023 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Jonathan Wenger <[email protected]> | ||
* @author Sachin Baijal <[email protected]> | ||
* Swagger name: AvaTaxClient | ||
*/ | ||
|
||
namespace Avalara.AvaTax.RestClient | ||
{ | ||
/// <summary> | ||
/// AP Config Tolerance Type | ||
/// </summary> | ||
public enum ApConfigToleranceType | ||
{ | ||
/// <summary> | ||
/// RealTime | ||
/// </summary> | ||
RealTime = 0, | ||
|
||
/// <summary> | ||
/// Batch | ||
/// </summary> | ||
Batch = 1, | ||
|
||
} | ||
} |
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,74 @@ | ||
using System; | ||
|
||
/* | ||
* AvaTax API Client Library | ||
* | ||
* (c) 2004-2023 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Jonathan Wenger <[email protected]> | ||
* @author Sachin Baijal <[email protected]> | ||
* Swagger name: AvaTaxClient | ||
*/ | ||
|
||
namespace Avalara.AvaTax.RestClient | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public enum BulkImportStatus | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
None = 0, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
Success = 1, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
Created = 2, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
Updated = 4, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
NotImported = 8, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
Ignored = 16, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
Error = 32, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
ValidationFailed = 64, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
PartialSuccess = 128, | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
Invalid = 256, | ||
|
||
} | ||
} |
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
Oops, something went wrong.